diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-05-23 18:42:42 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-05-23 19:15:03 -0700 |
commit | b611a6f5dc1e4d292eeb18e8be61b3fe327ab1e5 (patch) | |
tree | 1d50fb3a8685b9982baffb04950860fa587d1a1e /scripts | |
parent | c4ba219581bfaa5c9ef5ffa1280a7879d8122f2d (diff) | |
download | qtlocation-mapboxgl-b611a6f5dc1e4d292eeb18e8be61b3fe327ab1e5.tar.gz |
[build] Inline main.mk node targets into Makefile
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/main.mk | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/scripts/main.mk b/scripts/main.mk index cf062afc73..dd05e633ab 100644 --- a/scripts/main.mk +++ b/scripts/main.mk @@ -24,12 +24,6 @@ else ifeq ($(PLATFORM),qt) # Cross compilation support ENV = $(shell MASON_PLATFORM_VERSION=$(CONFIGURE_SUBPLATFORM) ./platform/qt/scripts/toolchain.sh) -else ifeq ($(PLATFORM),node) - CONFIGURE_PLATFORM = $(HOST_PLATFORM) - CONFIGURE_SUBPLATFORM = $(shell uname -m) - CONFIGURE_INPUT = platform/$(HOST_PLATFORM)/scripts/configure.sh - PLATFORM_OUTPUT = ./build/node-$(HOST_PLATFORM)-$(CONFIGURE_SUBPLATFORM) - else CONFIGURE_PLATFORM = $(PLATFORM) CONFIGURE_SUBPLATFORM = $(shell uname -m) @@ -37,12 +31,6 @@ else PLATFORM_OUTPUT = ./build/$(PLATFORM)-$(CONFIGURE_SUBPLATFORM) endif -ifneq (,$(findstring clang,$(CXX))) - CXX_HOST = "clang" -else ifneq (,$(findstring g++,$(CXX))) - CXX_HOST = "g++" -endif - # Text formatting TEXT_BOLD = \033[1m COLOR_GREEN = \033[32m @@ -87,19 +75,6 @@ Ninja/__project__: $(CONFIGURE_OUTPUT) @printf "$(TEXT_BOLD)$(COLOR_GREEN)* Recreating project...$(FORMAT_END)\n" $(ENV) deps/run_gyp platform/$(PLATFORM)/platform.gyp $(GYP_FLAGS) -f ninja -#### Node targets ############################################################## - -NODE_PRE_GYP = $(shell npm bin)/node-pre-gyp - -Makefile/node: $(CONFIGURE_OUTPUT) - $(NODE_PRE_GYP) configure --clang -- $(GYP_FLAGS) \ - -Dlibuv_cflags= -Dlibuv_ldflags= -Dlibuv_static_libs= - $(NODE_PRE_GYP) build --clang - -Xcode/node: $(CONFIGURE_OUTPUT) - $(NODE_PRE_GYP) configure --clang -- $(GYP_FLAGS) -f xcode \ - -Dlibuv_cflags= -Dlibuv_ldflags= -Dlibuv_static_libs= - #### Build individual targets ################################################## Makefile/%: Makefile/__project__ |