summaryrefslogtreecommitdiffstats
path: root/QA
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-08-14 09:05:49 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-08-16 22:13:27 (GMT)
commit516b334bd963452578367b2cd354db6c39ba99c9 (patch)
treef24aa85a28be562ea64929fe298a9851c1a74965 /QA
parent7fdc3e80028fd93fcc0111570a01cd78282cd41a (diff)
downloadswift-516b334bd963452578367b2cd354db6c39ba99c9.zip
swift-516b334bd963452578367b2cd354db6c39ba99c9.tar.bz2
Remove autoconf/make files.
Diffstat (limited to 'QA')
-rw-r--r--QA/Makefile.inc9
-rw-r--r--QA/UnitTest/Makefile.inc18
2 files changed, 0 insertions, 27 deletions
diff --git a/QA/Makefile.inc b/QA/Makefile.inc
deleted file mode 100644
index e86005d..0000000
--- a/QA/Makefile.inc
+++ /dev/null
@@ -1,9 +0,0 @@
-ifdef USE_VALGRIND
-# Not enabled: --show-reachable=yes
-TEST_RUNNER=valgrind --suppressions=QA/valgrind.supp -q --leak-check=full --track-origins=yes
-endif
-
-include QA/UnitTest/Makefile.inc
-
-.PHONY: test
-test: $(TEST_TARGETS)
diff --git a/QA/UnitTest/Makefile.inc b/QA/UnitTest/Makefile.inc
deleted file mode 100644
index f51828e..0000000
--- a/QA/UnitTest/Makefile.inc
+++ /dev/null
@@ -1,18 +0,0 @@
-UNITTEST_TARGET = QA/UnitTest/checker
-UNITTEST_SOURCES += \
- QA/UnitTest/checker.cpp
-UNITTEST_OBJECTS = \
- $(UNITTEST_SOURCES:.cpp=.o)
-
-TEST_TARGETS += check
-
-CLEANFILES += $(UNITTEST_TARGET)
-DEPS += $(UNITTEST_SOURCES:.cpp=.dep)
-
-.PHONY: check
-check: $(UNITTEST_TARGET)
- $(TEST_RUNNER) ./$(UNITTEST_TARGET)
-
-$(UNITTEST_TARGET): $(CPPUNIT_TARGET) $(UNITTEST_OBJECTS) $(UNITTEST_LIBS) $(BUNDLED_LIBS)
- $(QUIET_LINK)$(CXX) -o $(UNITTEST_TARGET) $(UNITTEST_OBJECTS) $(LDFLAGS) $(CPPUNIT_TARGET) $(UNITTEST_LIBS) $(BUNDLED_LIBS) $(LIBS)
-