Commit | Line | Data |
---|---|---|
6da586f4 | 1 | |
11c73ff2 | 2 | # set this on the command line to get a WIN32 or a FINAL build |
ebb35834 | 3 | BUILD := DEBUG |
2e58db1a | 4 | |
630fa680 PG |
5 | # cause the fancy $${@D} directory rules to work out |
6 | .SECONDEXPANSION: | |
7 | ||
72482893 | 8 | # The first and therefor default rule |
91a299db PG |
9 | .PHONY: default |
10 | default: | |
3fc83b9f | 11 | |
f1e07aad | 12 | |
ebb35834 PG |
13 | G_DIRMK := dir.mk |
14 | G_VARSMK := vars.mk | |
15 | G_FILESMK := files.mk | |
16 | G_RULESMK := rules.mk | |
17 | G_LISTSMK := lists.mk | |
18 | G_TVARSMK := tvars.mk | |
630fa680 | 19 | |
7b1ed706 | 20 | include ${G_LISTSMK} |
6b7bcb90 | 21 | include ${G_VARSMK} |
7bbc50a4 | 22 | |
fac0f562 | 23 | include packages.mk |
fac0f562 | 24 | |
6b7bcb90 PG |
25 | include lib/${G_VARSMK} |
26 | ||
27 | include targets.mk | |
630fa680 | 28 | |
5e936898 | 29 | # include all of the dir.mk |
7bbc50a4 | 30 | include lib/${G_DIRMK} |
a98a33a6 | 31 | include tests/${G_DIRMK} |
7bbc50a4 | 32 | |
016c4cab PG |
33 | include ${G_RULESMK} |
34 | ||
7bbc50a4 PG |
35 | # Do not include deps files when doing a clean operation |
36 | ifeq ($(filter ${L_CLEANCMDS},${MAKECMDGOALS}),) | |
37 | -include ${L_DEPS} | |
38 | endif | |
6da586f4 | 39 |