9 lines
159 B
Makefile
9 lines
159 B
Makefile
all: out01 README.html
|
|
out01: in01 out00
|
|
./out00
|
|
out00: in00
|
|
../00/hexcompile
|
|
%.html: %.md ../markdown
|
|
../markdown $<
|
|
clean:
|
|
rm -f out00 out01 README.html
|