diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-06-16 19:57:48 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-06-16 19:57:48 (GMT) |
commit | a2e0cf9108081663607706f661f411a5fcf86e1d (patch) | |
tree | 65f2a01f8d91c6d8a87f4720512534caa2430010 /Makefile | |
parent | 9bc8ddaf40d73647944592385bf56ece41046846 (diff) | |
download | swift-a2e0cf9108081663607706f661f411a5fcf86e1d.zip swift-a2e0cf9108081663607706f661f411a5fcf86e1d.tar.bz2 |
Make Swift compilation optional.
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 |