lang-bootstrap/05/Makefile
2022-02-14 16:52:33 -05:00

13 lines
261 B
Makefile

all: out04 a.out
in04: *.b ../04a/out04
../04a/out04 main.b in04
out04: in04 ../04/out03
../04/out03 in04 out04
%.html: %.md ../markdown
../markdown $<
%.out: %.c *.h out04
./out04 $< $@
a.out: main.c *.h out04
./out04
clean:
rm -f out* README.html *.out