summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/Makefile b/tests/Makefile
deleted file mode 100644
index c5374f3..0000000
--- a/tests/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-CC=g++
-CFLAGS=-Wall -c -g
-
-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