blob: 4c2a12de85e320c9bada881626d1553e9188a052 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
include prelude.mk
TOOLSET ?= mingw
CONFIGURATION ?= Debug
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
cmake_dir := $(build_dir)/cmake
DESTDIR ?= $(build_dir)/install
$(eval $(call noexpand,TOOLSET))
$(eval $(call noexpand,CONFIGURATION))
$(eval $(call noexpand,CMAKE_FLAGS))
$(eval $(call noexpand,DESTDIR))
.PHONY: all
all: build
.PHONY: clean
clean:
rm -rf -- '$(call escape,$(build_dir))'
.PHONY: build
build:
ifdef CI
cd cmake && python3 -m project.ci.cmake --install -- $(CMAKE_FLAGS)
else
cd cmake && python3 -m project.cmake.build \
--toolset '$(call escape,$(TOOLSET))' \
--configuration '$(call escape,$(CONFIGURATION))' \
--build '$(call escape,$(cmake_dir))' \
--install '$(call escape,$(DESTDIR))' \
-- \
'$(call escape,$(src_dir))' \
$(CMAKE_FLAGS)
endif
.PHONY: install
install: build
|