forked from tipei/DISSCO-2.0.2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
70 lines (57 loc) · 1.93 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
# GNU Make solution makefile autogenerated by Premake
# Type "make help" for usage help
ifndef config
config=debug
endif
export config
PROJECTS := lass parser muparser lcmod cmod UpgradeProjectFormat lassie
.PHONY: all clean help $(PROJECTS)
all: $(PROJECTS)
lass:
@echo "==== Building lass ($(config)) ===="
@${MAKE} --no-print-directory -C . -f lass.make
parser:
@echo "==== Building parser ($(config)) ===="
@${MAKE} --no-print-directory -C . -f parser.make
muparser:
@echo "==== Building muparser ($(config)) ===="
@${MAKE} --no-print-directory -C . -f muparser.make
lcmod:
@echo "==== Building lcmod ($(config)) ===="
@${MAKE} --no-print-directory -C . -f lcmod.make
cmod: lcmod lass parser muparser
@echo "==== Building cmod ($(config)) ===="
@${MAKE} --no-print-directory -C . -f cmod.make
UpgradeProjectFormat: lcmod lass parser muparser
@echo "==== Building UpgradeProjectFormat ($(config)) ===="
@${MAKE} --no-print-directory -C . -f UpgradeProjectFormat.make
lassie: lcmod lass parser
@echo "==== Building lassie ($(config)) ===="
@${MAKE} --no-print-directory -C . -f lassie.make
clean:
@${MAKE} --no-print-directory -C . -f lass.make clean
@${MAKE} --no-print-directory -C . -f parser.make clean
@${MAKE} --no-print-directory -C . -f muparser.make clean
@${MAKE} --no-print-directory -C . -f lcmod.make clean
@${MAKE} --no-print-directory -C . -f cmod.make clean
@${MAKE} --no-print-directory -C . -f UpgradeProjectFormat.make clean
@${MAKE} --no-print-directory -C . -f lassie.make clean
help:
@echo "Usage: make [config=name] [target]"
@echo ""
@echo "CONFIGURATIONS:"
@echo " debug"
@echo " release"
@echo ""
@echo "TARGETS:"
@echo " all (default)"
@echo " clean"
@echo " lass"
@echo " parser"
@echo " muparser"
@echo " lcmod"
@echo " cmod"
@echo " UpgradeProjectFormat"
@echo " lassie"
@echo ""
@echo "For more information, see http://industriousone.com/premake/quick-start"