Commit | Line | Data |
---|---|---|
6da586f4 | 1 | |
72482893 | 2 | # The first and therefor default rule |
91a299db PG |
3 | .PHONY: default |
4 | default: | |
3fc83b9f | 5 | |
f1e07aad | 6 | |
ebb35834 PG |
7 | G_DIRMK := dir.mk |
8 | G_VARSMK := vars.mk | |
9 | G_FILESMK := files.mk | |
10 | G_RULESMK := rules.mk | |
11 | G_LISTSMK := lists.mk | |
12 | G_TVARSMK := tvars.mk | |
630fa680 | 13 | |
7b1ed706 | 14 | include ${G_LISTSMK} |
6b7bcb90 | 15 | include ${G_VARSMK} |
7bbc50a4 | 16 | |
fac0f562 | 17 | include packages.mk |
fac0f562 | 18 | |
6b7bcb90 PG |
19 | include lib/${G_VARSMK} |
20 | ||
21 | include targets.mk | |
630fa680 | 22 | |
5e936898 | 23 | # include all of the dir.mk |
7bbc50a4 | 24 | include lib/${G_DIRMK} |
5417a0bc | 25 | |
a98a33a6 | 26 | include tests/${G_DIRMK} |
5417a0bc | 27 | -include physics/${G_DIRMK} |
7bbc50a4 | 28 | |
016c4cab PG |
29 | include ${G_RULESMK} |
30 | ||
7bbc50a4 PG |
31 | # Do not include deps files when doing a clean operation |
32 | ifeq ($(filter ${L_CLEANCMDS},${MAKECMDGOALS}),) | |
33 | -include ${L_DEPS} | |
34 | endif | |
6da586f4 | 35 |