diff options
author | pommicket <pommicket@gmail.com> | 2022-01-07 11:07:06 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-01-07 11:07:06 -0500 |
commit | 519069a89df7f2f704b9ba7052fc80660817115f (patch) | |
tree | 3713f912b9cb874775b149c009b51ab0bb1877df /04/Makefile | |
parent | 4cd2b7047c19e45dc2e664bb6666ee1f288b126c (diff) |
rename 04b => 04, better 04 README
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 |