From 3969c0a1ade186d2786a64ee5b660c86016208fc Mon Sep 17 00:00:00 2001 From: John Glover Date: Fri, 19 Aug 2011 18:55:49 +0100 Subject: Add initial C++ unit tests --- tests/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tests/Makefile (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 0000000..e932433 --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,19 @@ +CC=g++ +CFLAGS=-Wall -c + +all: testbase + +testbase: testbase.o base.o exceptions.o + $(CC) testbase.o base.o exceptions.o -o testbase -lcppunit + +testbase.o: testbase.cpp + $(CC) $(CFLAGS) testbase.cpp + +base.o: ../src/simpl/base.cpp + $(CC) $(CFLAGS) ../src/simpl/base.cpp + +exceptions.o: ../src/simpl/exceptions.cpp + $(CC) $(CFLAGS) ../src/simpl/exceptions.cpp + +clean: + rm -rf *o testbase -- cgit v1.2.3