diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -43,7 +43,9 @@ include 3rdParty/ZLib/Makefile.inc include 3rdParty/Expat/Makefile.inc include 3rdParty/SQLite/Makefile.inc include Swiften/Makefile.inc +ifeq ($(BUILD_SWIFT),yes) include Swift/Makefile.inc +endif include QA/Makefile.inc ################################################################################ @@ -53,6 +55,13 @@ include QA/Makefile.inc .PHONY: all all: $(TARGETS) +.PHONY: install +install: install-dirs $(INSTALL_TARGETS) + +.PHONY: install-dirs +install-dirs: + install -d $(includedir) $(libdir) + .PHONY: coverage coverage: tools/coverage/GenerateCoverageResults.sh |