lang-bootstrap/05/Makefile

14 lines
241 B
Makefile
Raw Normal View History

all: out04 a.out
2022-01-07 23:32:27 -05:00
in04: *.b ../04a/out04
../04a/out04 main.b in04
out04: in04 ../04/out03
../04/out03 in04 out04
%.html: %.md ../markdown
../markdown $<
%.out: %.c
./out04 $< $@
a.out: main.c
./out04
2022-01-07 23:32:27 -05:00
clean:
rm -f out* README.html *.out