aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 02:54:07 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 02:54:07 +0200
commit9400c8706f8cd985893f6ede5da66bbd17b03d44 (patch)
tree96a5bf037d84ba2b7919a0d0f7f656413437ff7f /Makefile
parentMakefile: move the prelude to prelude.mk (diff)
downloadwinapi-debug-9400c8706f8cd985893f6ede5da66bbd17b03d44.tar.gz
winapi-debug-9400c8706f8cd985893f6ede5da66bbd17b03d44.zip
update cmake-common
Also, change the build directory to build/.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile23
1 files changed, 7 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index 8d0200f..febfcf9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,7 @@
include prelude.mk
TOOLSET ?= mingw
+PLATFORM ?= auto
CONFIGURATION ?= Debug
BOOST_VERSION ?= 1.65.0
BOOST_LIBRARIES := --with-filesystem --with-program_options --with-test
@@ -8,16 +9,13 @@ CMAKE_FLAGS ?=
this_dir := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
src_dir := $(this_dir)
-ifdef CI
-build_dir := $(this_dir)../build
-else
-build_dir := $(this_dir).build
-endif
+build_dir := $(this_dir)build
boost_dir := $(build_dir)/boost
cmake_dir := $(build_dir)/cmake
DESTDIR ?= $(build_dir)/install
$(eval $(call noexpand,TOOLSET))
+$(eval $(call noexpand,PLATFORM))
$(eval $(call noexpand,CONFIGURATION))
$(eval $(call noexpand,BOOST_VERSION))
$(eval $(call noexpand,CMAKE_FLAGS))
@@ -38,34 +36,27 @@ $(boost_dir)/:
'$(call escape,$(boost_dir))'
.PHONY: deps
-ifdef CI
-deps:
- cd cmake && python3 -m project.ci.boost -- $(BOOST_LIBRARIES)
-else
deps: $(boost_dir)/
cd cmake && python3 -m project.boost.build \
--toolset '$(call escape,$(TOOLSET))' \
+ --platform '$(call escape,$(PLATFORM))' \
--configuration '$(call escape,$(CONFIGURATION))' \
-- \
'$(call escape,$(boost_dir))' \
$(BOOST_LIBRARIES)
-endif
.PHONY: build
build:
-ifdef CI
- cd cmake && python3 -m project.ci.cmake --install -- $(CMAKE_FLAGS)
-else
- cd cmake && python3 -m project.cmake.build \
+ cd cmake && python3 -m project.build \
--toolset '$(call escape,$(TOOLSET))' \
+ --platform '$(call escape,$(PLATFORM))' \
--configuration '$(call escape,$(CONFIGURATION))' \
- --build '$(call escape,$(cmake_dir))' \
--install '$(call escape,$(DESTDIR))' \
--boost '$(call escape,$(boost_dir))' \
-- \
'$(call escape,$(src_dir))' \
+ '$(call escape,$(cmake_dir))' \
$(CMAKE_FLAGS)
-endif
.PHONY: install
install: build