sigh
[coreboot.git] / src / vendorcode / amd / cimx / sb900 / Makefile.inc
1 #
2 # This file is part of the coreboot project.
3 #
4 # Copyright (C) 2011 Advanced Micro Devices, Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; version 2 of the License.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18 #
19
20 # CIMX Root directory
21 CIMX_ROOT = $(src)/vendorcode/amd/cimx
22
23 CIMX_INC  = -I$(src)/mainboard/$(MAINBOARDDIR)
24 CIMX_INC  += -I$(src)/southbridge/amd/cimx/sb900
25 CIMX_INC  += -I$(CIMX_ROOT)/sb900
26
27 romstage-y += AcpiLib.c
28 romstage-y += Azalia.c
29 romstage-y += Dispatcher.c
30 romstage-y += EcFanc.c
31 romstage-y += EcFanLib.c
32 romstage-y += Gec.c
33 romstage-y += Gpp.c
34 romstage-y += Pmio2Lib.c
35 romstage-y += Sata.c
36 romstage-y += SbCmn.c
37 romstage-y += SbMain.c
38 romstage-y += SbPor.c
39 romstage-y += MemLib.c
40 romstage-y += PciLib.c
41 romstage-y += IoLib.c
42 romstage-y += PmioLib.c
43 romstage-y += AmdLib.c
44 romstage-y += SbPeLib.c
45 romstage-y += AmdSbLib.c
46 romstage-y += EcLib.c
47 romstage-y += Ec.c
48 romstage-y += Smm.c
49 romstage-y += Usb.c
50 romstage-y += Hwm.c
51
52 ramstage-y += AcpiLib.c
53 ramstage-y += Azalia.c
54 ramstage-y += Dispatcher.c
55 ramstage-y += EcFanc.c
56 ramstage-y += EcFanLib.c
57 ramstage-y += Gec.c
58 ramstage-y += Gpp.c
59 ramstage-y += Pmio2Lib.c
60 ramstage-y += Sata.c
61 ramstage-y += SbCmn.c
62 ramstage-y += SbMain.c
63 ramstage-y += SbPor.c
64 ramstage-y += MemLib.c
65 ramstage-y += PciLib.c
66 ramstage-y += IoLib.c
67 ramstage-y += PmioLib.c
68 ramstage-y += AmdLib.c
69 ramstage-y += SbPeLib.c
70 ramstage-y += AmdSbLib.c
71 ramstage-y += EcLib.c
72 ramstage-y += Ec.c
73 ramstage-y += Smm.c
74 ramstage-y += Usb.c
75 #ramstage-y += Legacy.c
76 #ramstage-y += SbModInf.c
77 ramstage-y += Debug.c
78 ramstage-y += GppHp.c
79 ramstage-y += Hwm.c
80
81 CIMX_CFLAGS =
82 export CIMX_ROOT
83 export CIMX_INC
84 export CIMX_CFLAGS
85 CC := $(CC) $(CIMX_INC)
86
87 #######################################################################
88