From 9797243a5153df9c95c413e1173fc3b6695166ab Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 16 Mar 2014 22:26:12 +0100 Subject: [PATCH] fix header and add a makefile so I can test in isolation. --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3cc9d61 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +# I am not very good at Makefiles. + +CFLAGS += -Wall -g +INCLUDES = -I. + +all: test + +bin: + mkdir -p $@ + +test: bin/CuTestTest + @bin/CuTestTest + +bin/CuTestTest: AllTests.c CuTestTest.c CuTest.c | bin + $(CC) $(CFLAGS) $(INCLUDES) -lm -o $@ $^ + +clean: + @rm -rf *~ bin