aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-11-04 12:31:50 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-11-04 12:31:50 +0100
commit2097772cfd98f567a30c0426612e50b92a035a7c (patch)
treebc005f34f01e97e203b81acbaf16aaf594b6392c
parentupdate cmake-common (diff)
downloadprivilege-check-master.tar.gz
privilege-check-master.zip
Makefile: align assignmentsHEADmaster
-rw-r--r--Makefile23
1 files changed, 12 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index 4c398d7..77880aa 100644
--- a/Makefile
+++ b/Makefile
@@ -1,21 +1,22 @@
include prelude.mk
-TOOLSET ?= mingw
-PLATFORM ?= auto
-CONFIGURATION ?= Debug
-CMAKE_FLAGS ?=
+this_dir := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
+src_dir := $(this_dir)
+build_dir := $(this_dir)build
+cmake_dir := $(build_dir)/cmake
+install_dir := $(build_dir)/install
-this_dir := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
-src_dir := $(this_dir)
-build_dir := $(this_dir)build
-cmake_dir := $(build_dir)/cmake
-DESTDIR ?= $(build_dir)/install
+TOOLSET ?= mingw
+PLATFORM ?= auto
+CONFIGURATION ?= Debug
+CMAKE_FLAGS ?=
+INSTALL_PREFIX ?= $(install_dir)
$(eval $(call noexpand,TOOLSET))
$(eval $(call noexpand,PLATFORM))
$(eval $(call noexpand,CONFIGURATION))
$(eval $(call noexpand,CMAKE_FLAGS))
-$(eval $(call noexpand,DESTDIR))
+$(eval $(call noexpand,INSTALL_PREFIX))
.PHONY: all
all: build
@@ -30,7 +31,7 @@ build:
--toolset '$(call escape,$(TOOLSET))' \
--platform '$(call escape,$(PLATFORM))' \
--configuration '$(call escape,$(CONFIGURATION))' \
- --install '$(call escape,$(DESTDIR))' \
+ --install '$(call escape,$(INSTALL_PREFIX))' \
-- \
'$(call escape,$(src_dir))' \
'$(call escape,$(cmake_dir))' \