diff options
author | pommicket <pommicket@gmail.com> | 2022-01-07 23:32:27 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-01-07 23:32:27 -0500 |
commit | 5d6b490cce1a99a2541d1fcee101df4331d4d86a (patch) | |
tree | 902295cbd43a7a32e179412d98f75dd2705fd6db /05/Makefile | |
parent | 262824b21491446bb20acba8be1054207b5f50f0 (diff) |
start C compiler
Diffstat (limited to '05/Makefile')
-rw-r--r-- | 05/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/05/Makefile b/05/Makefile new file mode 100644 index 0000000..7242404 --- /dev/null +++ b/05/Makefile @@ -0,0 +1,11 @@ +all: out04 +in04: *.b ../04a/out04 + ../04a/out04 main.b in04 +out04: in04 ../04/out03 + ../04/out03 in04 out04 +%.html: %.md ../markdown + ../markdown $< +%.out: %.c + ./out04 $< $@ +clean: + rm -f out* README.html *.out |