fixed velocity math mistake, updated gravtiy well force to look better
[libbear.git] / Makefile
... / ...
CommitLineData
1
2# The first and therefor default rule
3.PHONY: default
4default:
5
6# Suppress all builtin variables and rules
7MAKEFLAGS += -rR
8
9# Suppress all command printing
10MAKEFLAGS += -s
11
12G_DIRMK := dir.mk
13G_VARSMK := vars.mk
14G_FILESMK := files.mk
15G_RULESMK := rules.mk
16G_LISTSMK := lists.mk
17G_TVARSMK := tvars.mk
18
19include Makefile.d/${G_VARSMK}
20
21include ${G_LISTSMK}
22include ${G_VARSMK}
23
24include packages.mk
25
26include lib/${G_VARSMK}
27
28include targets.mk
29
30# include all of the dir.mk
31include lib/${G_DIRMK}
32
33include tests/${G_DIRMK}
34include physics/${G_DIRMK}
35
36include ${G_RULESMK}
37
38# Do not warn or error if not found, dependencies will get created with the object files
39-include ${L_DEPS}
40