diff options
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 |