diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 24 |
1 files changed, 15 insertions, 9 deletions
@@ -1,19 +1,25 @@ -stdu : stdu.o intmath.o intmath.h config-parser.h config-parser.o - cc -o stdu stdu.o intmath.o config-parser.o +stdu : stdu.o intmath.o intmath.h config-parser.h config-parser.o formatting.o \ + formatting.h + cc -g -o stdu stdu.o intmath.o config-parser.o formatting.o stdu.o : stdu.c - cc -c stdu.c + cc -g -c stdu.c + +formatting.o : formatting.h formatting.c intmath.h intmath.c minitest.h + cc -g -c formatting.c intmath.o : intmath.c minitest.h intmath.h - cc -c intmath.c + cc -g -c intmath.c config-parser.o : config-parser.c config-parser.h minitest.h - cc -c config-parser.c + cc -g -c config-parser.c + +tests : tests.c minitest.h intmath.c config-parser.c formatting.c + cc -g -o tests tests.c -test : tests.c minitest.h intmath.c config-parser.c - cc -o test tests.c - ./test +test : tests + ./tests clean : - rm stdu stdu.o intmath.o test config-parser.o + rm stdu stdu.o intmath.o tests config-parser.o formatting.o |