diff options
Diffstat (limited to '04/Makefile')
-rw-r--r-- | 04/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/04/Makefile b/04/Makefile new file mode 100644 index 0000000..ae9568c --- /dev/null +++ b/04/Makefile @@ -0,0 +1,11 @@ +all: out03 guessing_game.out out04 README.html +out03: in03 ../03/out02 + ../03/out02 +%.html: %.md ../markdown + ../markdown $< +out04: in04 out03 + ./out03 +%.out: % out03 + ./out03 $< $@ +clean: + rm -f out* README.html *.out |