diff options
author | pommicket <pommicket@gmail.com> | 2022-02-14 12:04:49 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-02-14 12:04:49 -0500 |
commit | d0d868433eb8e737fd581c1eb6f2734f293e6267 (patch) | |
tree | a4b548a1833588cd0275085490d88eda428970a2 /05/Makefile | |
parent | f7a8a193c2e523b2e670d385244cd2d830453938 (diff) |
clean up stb_sprintf; implementation of fprintf et al, remove
Diffstat (limited to '05/Makefile')
-rw-r--r-- | 05/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/05/Makefile b/05/Makefile index 7242404..69fd54c 100644 --- a/05/Makefile +++ b/05/Makefile @@ -1,4 +1,4 @@ -all: out04 +all: out04 a.out in04: *.b ../04a/out04 ../04a/out04 main.b in04 out04: in04 ../04/out03 @@ -7,5 +7,7 @@ out04: in04 ../04/out03 ../markdown $< %.out: %.c ./out04 $< $@ +a.out: main.c + ./out04 clean: rm -f out* README.html *.out |