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 | |
52ea3ab0 PG |
14 | include Makefile.d/${G_VARSMK} |
15 | ||
7b1ed706 | 16 | include ${G_LISTSMK} |
6b7bcb90 | 17 | include ${G_VARSMK} |
7bbc50a4 | 18 | |
fac0f562 | 19 | include packages.mk |
fac0f562 | 20 | |
6b7bcb90 PG |
21 | include lib/${G_VARSMK} |
22 | ||
23 | include targets.mk | |
630fa680 | 24 | |
5e936898 | 25 | # include all of the dir.mk |
7bbc50a4 | 26 | include lib/${G_DIRMK} |
5417a0bc | 27 | |
a98a33a6 | 28 | include tests/${G_DIRMK} |
5417a0bc | 29 | -include physics/${G_DIRMK} |
7bbc50a4 | 30 | |
016c4cab PG |
31 | include ${G_RULESMK} |
32 | ||
7bbc50a4 PG |
33 | # Do not include deps files when doing a clean operation |
34 | ifeq ($(filter ${L_CLEANCMDS},${MAKECMDGOALS}),) | |
35 | -include ${L_DEPS} | |
36 | endif | |
6da586f4 | 37 |