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