summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
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