diff options
author | pommicket <pommicket@gmail.com> | 2022-01-07 12:06:33 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-01-07 12:06:33 -0500 |
commit | fbe3f4e701adcf5ef8707d5b56ec3b179b942e71 (patch) | |
tree | 488412f445e77a9abbb04803062a9ee5191c13c7 /04a/Makefile | |
parent | 479ff20704ecfb9e78dda1d52375368fbafbabbd (diff) |
04 compiler fix (global lookup), start preprocessor
Diffstat (limited to '04a/Makefile')
-rw-r--r-- | 04a/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/04a/Makefile b/04a/Makefile index f6b9915..610b054 100644 --- a/04a/Makefile +++ b/04a/Makefile @@ -1,8 +1,6 @@ -all: out03 out04a README.html -out03: in03 ../03/out02 - ../03/out02 -out04a: out03 in04a - ./out03 in04a out04a +all: out04 +out04: in04 ../04/out03 + ../04/out03 %.html: %.md ../markdown ../markdown $< clean: |