-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
85 lines (70 loc) · 1.92 KB
/
Makefile
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Alternative GNU Make workspace makefile autogenerated by Premake
ifndef config
config=debug
endif
ifndef verbose
SILENT = @
endif
ifeq ($(config),debug)
GLFW_config = debug
Glad_config = debug
glm_config = debug
Jukcraft_config = debug
else ifeq ($(config),beta)
GLFW_config = beta
Glad_config = beta
glm_config = beta
Jukcraft_config = beta
else ifeq ($(config),release)
GLFW_config = release
Glad_config = release
glm_config = release
Jukcraft_config = release
else
$(error "invalid configuration $(config)")
endif
PROJECTS := GLFW Glad glm Jukcraft
.PHONY: all clean help $(PROJECTS)
all: $(PROJECTS)
GLFW:
ifneq (,$(GLFW_config))
@echo "==== Building GLFW ($(GLFW_config)) ===="
@${MAKE} --no-print-directory -C vendor/glfw -f Makefile config=$(GLFW_config)
endif
Glad:
ifneq (,$(Glad_config))
@echo "==== Building Glad ($(Glad_config)) ===="
@${MAKE} --no-print-directory -C vendor/glad -f Makefile config=$(Glad_config)
endif
glm:
ifneq (,$(glm_config))
@echo "==== Building glm ($(glm_config)) ===="
@${MAKE} --no-print-directory -C vendor/glm -f Makefile config=$(glm_config)
endif
Jukcraft: GLFW Glad
ifneq (,$(Jukcraft_config))
@echo "==== Building Jukcraft ($(Jukcraft_config)) ===="
@${MAKE} --no-print-directory -C Jukcraft -f Makefile config=$(Jukcraft_config)
endif
clean:
@${MAKE} --no-print-directory -C vendor/glfw -f Makefile clean
@${MAKE} --no-print-directory -C vendor/glad -f Makefile clean
@${MAKE} --no-print-directory -C vendor/glm -f Makefile clean
@${MAKE} --no-print-directory -C Jukcraft -f Makefile clean
help:
@echo "Usage: make [config=name] [target]"
@echo ""
@echo "CONFIGURATIONS:"
@echo " debug"
@echo " beta"
@echo " release"
@echo ""
@echo "TARGETS:"
@echo " all (default)"
@echo " clean"
@echo " GLFW"
@echo " Glad"
@echo " glm"
@echo " Jukcraft"
@echo ""
@echo "For more information, see https://github.com/premake/premake-core/wiki"