-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (26 loc) · 697 Bytes
/
Makefile
File metadata and controls
33 lines (26 loc) · 697 Bytes
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
# GNU Make solution makefile autogenerated by Premake
# Type "make help" for usage help
ifndef config
config=
endif
export config
PROJECTS := towerdefense
.PHONY: all clean help $(PROJECTS)
all: $(PROJECTS)
towerdefense:
@echo "==== Building towerdefense ($(config)) ===="
@${MAKE} --no-print-directory -C . -f towerdefense.make
clean:
@${MAKE} --no-print-directory -C . -f towerdefense.make clean
help:
@echo "Usage: make [config=name] [target]"
@echo ""
@echo "CONFIGURATIONS:"
@echo " "
@echo ""
@echo "TARGETS:"
@echo " all (default)"
@echo " clean"
@echo " towerdefense"
@echo ""
@echo "For more information, see http://industriousone.com/premake/quick-start"