forked from input-output-hk/cardano-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (28 loc) · 759 Bytes
/
Makefile
File metadata and controls
32 lines (28 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
pdf_files = README.pdf \
000_AWS.pdf \
000_install.pdf \
010_getConfigFiles_AND_Connect.pdf \
011_cli.pdf \
012_understanding-config-files.pdf \
020_keys_and_addresses.pdf \
030_faucet.pdf \
040_transactions.pdf \
050_register_key.pdf \
060_node_keys.pdf \
061_KES_period.pdf \
070_core_relay.pdf \
080_register_stakepool.pdf \
081_start_your_nodes.pdf \
090_retire_stakepool.pdf \
091_logging.pdf \
092_ekg.pdf \
093_prometheus.pdf
png_files = 011_cli.png
.PHONE: all
all: $(pdf_files) 011_cli.pdf
$(pdf_files): %.pdf: %.md
pandoc -f markdown -t latex -o $@ $<
$(png_files): %.png: %.dot
dot -Tpng $< -o $@
011_cli.pdf: 011_cli.png 011_cli.md
pandoc -f markdown -t latex -o 011_cli.pdf 011_cli.md