diff options
Diffstat (limited to '02/Makefile')
-rw-r--r-- | 02/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/02/Makefile b/02/Makefile index 23fc8a1..17b0b0e 100644 --- a/02/Makefile +++ b/02/Makefile @@ -1,7 +1,9 @@ all: out01 out02 README.html out01: in01 ../01/out00 -out02: out01 +out02: out01 in02 ./out01 %.html: %.md ../markdown ../markdown $< +clean: + rm -f out01 out02 README.html |