From: Stefan Bund Date: Tue, 26 Oct 2010 13:34:21 +0000 (+0200) Subject: Add QMAKEOPTS make variable X-Git-Url: http://g0dil.de/git?p=pykit.git;a=commitdiff_plain;h=e3ab55569fbc66cb4f47610bd5f789ccacc19300 Add QMAKEOPTS make variable --- diff --git a/Makefile b/Makefile index 6525bcf..4a6c3b0 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ default: all ; Makefile.qmake: - qmake -o Makefile.qmake pykit.pro + qmake -o Makefile.qmake pykit.pro $(QMAKEOPTS) %: Makefile.qmake FORCE @$(MAKE) -f Makefile.qmake $@ @@ -13,3 +13,4 @@ clean: Makefile: ; +.PHONY: default FORCE clean