2022-01-06 23:29:59 -05:00
|
|
|
all: out03 guessing_game.out out04b README.html
|
2021-11-16 11:02:45 -05:00
|
|
|
out03: in03 ../03/out02
|
|
|
|
../03/out02
|
|
|
|
%.html: %.md ../markdown
|
|
|
|
../markdown $<
|
2022-01-06 23:29:59 -05:00
|
|
|
out04b: in04b out03
|
|
|
|
./out03
|
|
|
|
%.out: % out03
|
|
|
|
./out03 $< $@
|
2021-11-16 11:02:45 -05:00
|
|
|
clean:
|
2022-01-06 23:29:59 -05:00
|
|
|
rm -f out* README.html *.out
|