export BUILDTYPE ?= Release export BUILD_TEST ?= 1 export BUILD_RENDER ?= 1 export BUILD_OFFLINE ?= 1 export ENABLE_COVERAGE ?= 0 # Determine build platform ifeq ($(shell uname -s), Darwin) export BUILD = osx export JOBS ?= $(shell sysctl -n hw.ncpu) else ifeq ($(shell uname -s), Linux) export BUILD = linux export JOBS ?= $(shell grep --count processor /proc/cpuinfo) else $(error Cannot determine build platform) endif export BUILD_VERSION = $(shell uname -m) RUN = +@$(MAKE) -f scripts/main.mk default: ; @printf "You must specify a valid target\n" #### OS X targets ############################################################## ifeq ($(BUILD),osx) .PHONY: osx xosx nosx run-osx run-xosx osx: ; $(RUN) HOST=osx HOST_VERSION=x86_64 Xcode/osxapp xosx: osx nosx: osx run-osx: osx ; @"gyp/build/$(BUILDTYPE)/Mapbox GL.app/Contents/MacOS/Mapbox GL" run-xosx: run-osx .PHONY: Xcode/osx Xcode/ios Xcode/ios: ; $(RUN) HOST=ios Xcode/__project__ Xcode/osx: ; $(RUN) HOST=osx HOST_VERSION=x86_64 Xcode/__project__ .PHONY: xproj iproj xproj: Xcode/osx ; @open ./build/osx-x86_64/gyp/osx.xcodeproj iproj: Xcode/ios ; @open ./build/ios-all/gyp/ios.xcodeproj .PHONY: ios ibench isim ios ibench isim: export XCODEBUILD_ARGS += PROVISIONING_PROFILE="$$(PROVISIONING_PROFILE)" ios: export XCODEBUILD_ARGS += -sdk iphoneos ARCHS="arm64 armv7 armv7s" ios: ; $(RUN) HOST=ios Xcode/iosapp isim: export XCODEBUILD_ARGS += -sdk iphonesimulator ARCHS="x86_64 i386" isim: ; $(RUN) HOST=ios Xcode/iosapp ibench: export XCODEBUILD_ARGS += -sdk iphoneos ARCHS="arm64" ibench: ; $(RUN) HOST=ios Xcode/ios-bench .PHONY: ipackage ipackage-strip ipackage-sim itest ipackage: Xcode/ios ; @JOBS=$(JOBS) BITCODE=$(BITCODE) FORMAT=$(FORMAT) BUILD_DEVICE=$(BUILD_DEVICE) SYMBOLS=$(SYMBOLS) ./platform/ios/scripts/package.sh ipackage-strip: Xcode/ios ; @JOBS=$(JOBS) BITCODE=$(BITCODE) FORMAT=$(FORMAT) BUILD_DEVICE=$(BUILD_DEVICE) SYMBOLS=NO ./platform/ios/scripts/package.sh ipackage-sim: Xcode/ios ; @JOBS=$(JOBS) BUILDTYPE=Debug BITCODE=$(BITCODE) FORMAT=dynamic BUILD_DEVICE=false SYMBOLS=$(SYMBOLS) ./platform/ios/scripts/package.sh iframework: Xcode/ios ; @JOBS=$(JOBS) BITCODE=$(BITCODE) FORMAT=dynamic BUILD_DEVICE=$(BUILD_DEVICE) SYMBOLS=$(SYMBOLS) ./platform/ios/scripts/package.sh ifabric: Xcode/ios ; @JOBS=$(JOBS) BITCODE=$(BITCODE) FORMAT=$(FORMAT) BUILD_DEVICE=$(BUILD_DEVICE) SYMBOLS=NO BUNDLE_RESOURCES=YES ./platform/ios/scripts/package.sh itest: ipackage-sim ; ./platform/ios/scripts/test.sh idocument: ; OUTPUT=$(OUTPUT) ./platform/ios/scripts/document.sh .PHONY: xpackage xpackage-strip xctest xpackage: Xcode/osx ; @JOBS=$(JOBS) ./platform/osx/scripts/package.sh xpackage-strip: Xcode/osx ; @JOBS=$(JOBS) ./platform/osx/scripts/package.sh strip xctest: Xcode/osx ; @JOBS=$(JOBS) ./platform/osx/scripts/test.sh endif #### All platforms targets ##################################################### .PHONY: linux run-linux run-valgrind-linux linux: ; $(RUN) Makefile/linuxapp nlinux: ; $(RUN) Ninja/linuxapp run-linux: linux ; (cd build/$(BUILD)-$(BUILD_VERSION)/$(BUILDTYPE) && ./mapbox-gl) run-valgrind-linux: linux (cd build/$(BUILD)-$(BUILD_VERSION)/$(BUILDTYPE) && valgrind --leak-check=full --suppressions=../../../scripts/valgrind.sup ./mapbox-gl) .PHONY: config compdb tidy config: ; $(RUN) config # Generates a compilation database with ninja for use in clang tooling compdb: ; $(RUN) Ninja/compdb tidy: ; $(RUN) tidy .PHONY: android android-lib # Builds a particular android architecture. android-lib-%: ; $(RUN) HOST=android HOST_VERSION=$* Makefile/androidapp # Builds the default Android library android-lib: ; $(RUN) HOST=android Makefile/androidapp # Builds the selected/default Android library android: android-lib cd platform/android && ./gradlew --parallel --max-workers=$(JOBS) assemble$(BUILDTYPE) # Builds all android architectures for distribution. apackage: android-lib-arm-v5 android-lib-arm-v7 android-lib-arm-v8 apackage: android-lib-x86 android-lib-x86-64 apackage: android-lib-mips cd platform/android && ./gradlew --parallel-threads=$(JOBS) assemble$(BUILDTYPE) # Builds the Node.js library .PHONY: node node: ; $(RUN) HTTP=none ASSET=none Makefile/node .PHONY: Xcode/node Xcode/node: ; $(RUN) HTTP=none ASSET=none Xcode/node .PHONY: xnode xnode: Xcode/node ; @open ./build/binding.xcodeproj nproj: $(RUN) HTTP=none ASSET=none node/xproj @open ./build/binding.xcodeproj .PHONY: test test: ; $(RUN) Makefile/test test-%: ; $(RUN) test-$* ifeq ($(BUILD),osx) xtest: ; $(RUN) HOST=osx HOST_VERSION=x86_64 Xcode/test endif .PHONY: check check: ; $(RUN) BUILDTYPE=Debug ENABLE_COVERAGE=1 check coveralls: ; $(RUN) BUILDTYPE=Debug ENABLE_COVERAGE=1 coveralls .PHONY: render render: ; $(RUN) Makefile/mbgl-render .PHONY: offline offline: ; $(RUN) Makefile/mbgl-offline ##### Maintenace operations #################################################### .PHONY: clear_xcode_cache clear_xcode_cache: ifeq ($(BUILD), osx) @CUSTOM_DD=`defaults read com.apple.dt.Xcode IDECustomDerivedDataLocation 2>/dev/null`; \ if [ $$CUSTOM_DD ]; then \ echo clearing files in $$CUSTOM_DD older than one day; \ find $$CUSTOM_DD/mapboxgl-app-* -mtime +1 | xargs rm -rf; \ find $$CUSTOM_DD/osxapp-* -mtime +1 | xargs rm -rf; \ fi; \ if [ -d ~/Library/Developer/Xcode/DerivedData/ ] && [ ! $$CUSTOM_DD ]; then \ echo 'clearing files in ~/Library/Developer/Xcode/DerivedData/{mapboxgl-app,osxapp}-* older than one day'; \ find ~/Library/Developer/Xcode/DerivedData/mapboxgl-app-* -mtime +1 | xargs rm -rf; \ find ~/Library/Developer/Xcode/DerivedData/osxapp-* -mtime +1 | xargs rm -rf; \ fi endif .PHONY: clear_sqlite_cache clear_sqlite_cache: ifeq ($(BUILD), osx) rm -f ~/Library/Application\ Support/Mapbox\ GL/cache.db else rm -f /tmp/mbgl-cache.db endif clean: clear_sqlite_cache clear_xcode_cache -find ./deps/gyp -name "*.pyc" -exec rm {} \; -find ./build -type f -not -path '*/*.xcodeproj/*' -exec rm {} \; -rm -rf ./gyp/build/ -rm -rf ./config/*.gypi -rm -rf ./platform/android/MapboxGLAndroidSDK/build \ ./platform/android/MapboxGLAndroidSDKTestApp/build \ ./platform/android/MapboxGLAndroidSDK/src/main/jniLibs \ ./platform/android/MapboxGLAndroidSDK/src/main/obj.target \ ./platform/android/MapboxGLAndroidSDK/src/main/assets distclean: clean -rm -rf ./mason_packages