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