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