Wrap long comments at sentence boundaries, instead of arbitrarily.
1 # Copyright 2017, pEp Foundation
2 # This file is part of pEpEngine
3 # This file may be used under the terms of the GNU General Public License version 3
6 # This file assembles all the make variables that a maintainer or dev may want to adapt for a distribution.
8 # To use custom build configuration variables, put them in a new file with the path `build-config/<name>.conf`.
9 # Execute `export PLATFORM_OVERRIDE=<name>` before running make.
10 # If this environment variable is not set, make will load a default configuration for your platform.
12 BUILD_CONFIG:=$(dir $(lastword $(MAKEFILE_LIST)))build-config
14 include $(BUILD_CONFIG)/common.conf
15 # Cross-compiling is currently not supported.
16 # Maybe you can hack something with `PLATFORM_OVERRIDE`
17 ifeq ($(BUILD_ON),$(BUILD_FOR))
18 include $(BUILD_CONFIG)/$(BUILD_ON).conf
20 $(error I don't know how to build for $(BUILD_FOR) on $(BUILD_ON))
22 ifdef PLATFORM_OVERRIDE
23 include $(BUILD_CONFIG)/$(PLATFORM_OVERRIDE).conf