summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 6ecdaa77103c869c40eb6d9c6aa0daad718d98ae (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
28
29
30
31
32
33
34
35
36
37
38
39
40
TARGET = template_debug

BASE = scons target=$(TARGET) $(EXTRA_ARGS)
LINUX = $(BASE) platform=linux
WINDOWS = $(BASE) platform=windows
MACOS = $(BASE) platform=macos


.PHONY: usage
usage:
	@echo -e "Specify one of the available targets:\n"
        # https://stackoverflow.com/a/26339924
	@LC_ALL=C $(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/(^|\n)# Files(\n|$$)/,/(^|\n)# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | grep -E -v -e '^[^[:alnum:]]' -e '^$@$$'
	@echo -e "\nDefine the SCons target with TARGET, and pass extra SCons arguments with EXTRA_ARGS."


linux:
	make linux32
	make linux64

linux32: SConstruct
	$(LINUX) arch=x86_32

linux64: SConstruct
	$(LINUX) arch=x86_64


windows:
	make windows32
	make windows64

windows32: SConstruct
	$(WINDOWS) arch=x86_32

windows64: SConstruct
	$(WINDOWS) arch=x86_64


macos: SConstruct
	$(MACOS)