summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 387abfa..0000000
--- a/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-QMAKE = qmake
-MAKEFILE = libresourceqt.make
-LIB = build/libresourceqt.so.1.0.0
-
-%.make: %.pro
- $(QMAKE) -o $@ $<
-
-all: $(MAKEFILE)
- $(MAKE) -f $(MAKEFILE) all
- $(MAKE) -C tests all
-
-clean:
- $(RM) $(MAKEFILE)
- $(RM) -r build
- $(MAKE) -C tests clean
-
-install: $(MAKEFILE)
- $(MAKE) -f $(MAKEFILE) install
- $(MAKE) -C tests install
-
-tests: force
- $(MAKE) -C tests tests
-
-force: ;
-
-.phony: clean all install tests