summaryrefslogtreecommitdiff
path: root/GNUmakefile.in
blob: b1459a56670ca40a694e5bd535f2fef5639e15b0 (plain)
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
# Based on "http://iany.me/wiki/Makefile/" by "Ian Yang" licensed under "CC by 3.0"

BUILD_FOLDER := _build

CUSTOM_TARGETS := cmake

# Do not try to use custom target when invoking external makefile
EXTERNAL_TARGETS := $(filter-out $(CUSTOM_TARGETS), $(MAKECMDGOALS))

# Call all targets using `Makefile` in build directory in one `make` command.
$(or $(lastword $(EXTERNAL_TARGETS)),all):
	$(MAKE) -C $(BUILD_FOLDER) $(EXTERNAL_TARGETS)

# If no targets are specified, use the dummy `all` target
.PHONY: $(EXTERNAL_TARGETS) all

# Do nothing for all targets but last. Also quiet the message "Noting to be done on xxx"
$(filter-out $(lastword $(EXTERNAL_TARGETS)), $(EXTERNAL_TARGETS)):
	@cd .

cmake: $(BUILD_FOLDER)
	cd $(BUILD_FOLDER) && cmake ..

$(BUILD_FOLDER):
	mkdir $(BUILD_FOLDER)

.PHONY: cmake