summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2013-01-11 16:08:29 +0100
committerJohn Glover <j@johnglover.net>2013-01-11 16:08:29 +0100
commit3c5c5241762e8b9da1dbba0d2456fe52a703752a (patch)
tree8352d661c9bc5e0182c30a094ec0044c5b74fa01 /tests/Makefile
parent09b2248a1bd8ab2b93f250a6c688add742b88539 (diff)
downloadsimpl-3c5c5241762e8b9da1dbba0d2456fe52a703752a.tar.gz
simpl-3c5c5241762e8b9da1dbba0d2456fe52a703752a.tar.bz2
simpl-3c5c5241762e8b9da1dbba0d2456fe52a703752a.zip
Remove unused test Makefile and valgrind suppression file
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