diff options
author | John Glover <glover.john@gmail.com> | 2011-08-19 18:55:49 +0100 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2011-08-19 18:55:49 +0100 |
commit | 3969c0a1ade186d2786a64ee5b660c86016208fc (patch) | |
tree | 25003e1598612aff289bf5fbec8ba149a301f008 /tests/Makefile | |
parent | 43c2d5723b392b385837a1cf90e75f88abc3d5d6 (diff) | |
download | simpl-3969c0a1ade186d2786a64ee5b660c86016208fc.tar.gz simpl-3969c0a1ade186d2786a64ee5b660c86016208fc.tar.bz2 simpl-3969c0a1ade186d2786a64ee5b660c86016208fc.zip |
Add initial C++ unit tests
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
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 |