summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-02-02 15:51:41 +0200
committerWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-02-02 15:51:41 +0200
commit8bff62c335842b4c850cc09716e79c2f556247c7 (patch)
tree281dd5c4a92087f6308e3fb540aba62d7fd272c2 /tests/Makefile
parentb7d622788b55d30d51ce30bd58634763fddf66fc (diff)
directory structure changes
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/Makefile b/tests/Makefile
deleted file mode 100644
index 20ae9ef..0000000
--- a/tests/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-QMAKE = qmake
-MAKEFILES = $(patsubst %.pro,%.make,$(wildcard *.pro))
-MAKEOVERRIDES =
-
-%.make: %.pro
- $(QMAKE) -o $@ $<
-
-tests: all
- find build -type f -name 'test-*' -exec sh -c "if test -x {}; then {}; fi" \;
-
-clean:
- $(RM) $(MAKEFILES)
- $(RM) -r build
-
-all: $(MAKEFILES)
- for makefile in $(MAKEFILES); do $(MAKE) -f "$$makefile" all; done
-
-install: $(MAKEFILES)
- for makefile in $(MAKEFILES); do $(MAKE) -f "$$makefile" install; done
-
-.phony: install tests all clean