diff options
author | pommicket <pommicket@gmail.com> | 2022-01-06 23:29:59 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-01-06 23:30:24 -0500 |
commit | 4cd2b7047c19e45dc2e664bb6666ee1f288b126c (patch) | |
tree | fca1460e2662c042ecc1ab0ecda4948bd8b139d5 /04b/Makefile | |
parent | 3e73f6625cf4ee1c0ac7263d293dcc62fcc53597 (diff) |
04b initial readme, guessing game, compiler fixes
Diffstat (limited to '04b/Makefile')
-rw-r--r-- | 04b/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/04b/Makefile b/04b/Makefile index e6187d4..ef72181 100644 --- a/04b/Makefile +++ b/04b/Makefile @@ -1,7 +1,11 @@ -all: out03 +all: out03 guessing_game.out out04b README.html out03: in03 ../03/out02 ../03/out02 %.html: %.md ../markdown ../markdown $< +out04b: in04b out03 + ./out03 +%.out: % out03 + ./out03 $< $@ clean: - rm -f out* README.html + rm -f out* README.html *.out |