blob: 3d84338b5be50f832f00ed41f67f366703ae0797 [file] [log] [blame]
Benny Prijono5dcb38d2005-11-21 01:55:47 +00001#
2# Include host/target/compiler selection.
3# This will export CC_NAME, MACHINE_NAME, OS_NAME, and HOST_NAME variables.
4#
5include ../../build.mak
6
7#
8# Include global compiler specific definitions
9#
10include ../../build/cc-$(CC_NAME).mak
11
12#
13# (Optionally) Include compiler specific configuration that is
14# specific to this project. This configuration file is
15# located in this directory.
16#
17-include cc-$(CC_NAME).mak
18
19#
20# Include global machine specific definitions
21#
22include ../../build/m-$(MACHINE_NAME).mak
23-include m-$(MACHINE_NAME).mak
24
25#
26# Include target OS specific definitions
27#
28include ../../build/os-$(OS_NAME).mak
29
30#
31# (Optionally) Include target OS specific configuration that is
32# specific to this project. This configuration file is
33# located in this directory.
34#
35-include os-$(OS_NAME).mak
36
37#
38# Include host specific definitions
39#
40include ../../build/host-$(HOST_NAME).mak
41
42#
43# (Optionally) Include host specific configuration that is
44# specific to this project. This configuration file is
45# located in this directory.
46#
47-include host-$(HOST_NAME).mak
48
49#
50# Include global user configuration, if any
51#
52-include ../../user.mak
53
54