44317bd0b4a6c03fe360032f40d9f4492bd64c4c
[coreboot.git] / payloads / coreinfo / Makefile
1 ##
2 ## This file is part of the coreinfo project.
3 ##
4 ## Copyright (C) 2008 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 CC=gcc
21 CROSS_CFLAGS = -m32
22
23 INCLUDES = -I../libpayload/include 
24 INCLUDES += -I$(shell $(CC) $(CROSS_CFLAGS) -print-search-dirs | head -n 1 | cut -d' ' -f2)include
25
26 LIBPAYLOAD=../libpayload/libpayload.a
27 LIBGCC:=$(shell $(CC) $(CROSS_CFLAGS) -print-libgcc-file-name)
28 CFLAGS := -Werror -fno-stack-protector -nostdinc $(INCLUDES)
29
30 MODULES = cpuinfo_module.o cpuid.o pci_module.o coreboot_module.o
31 OBJECTS = coreinfo.o
32 TARGET  = coreinfo.elf
33
34 all: $(TARGET)
35
36 clean:
37         @ rm -f $(TARGET) $(MODULES) $(OBJECTS)
38
39 $(TARGET): $(OBJECTS) $(MODULES)
40         #ld --verbose -T ../libpayload/libpayload.ldscript -o $@ $(OBJECTS) --whole-archive $(LIBPAYLOAD) --no-whole-archive $(LIBGCC)
41         ld -T ../libpayload/libpayload.ldscript -o $@ $(OBJECTS) $(MODULES) ../libpayload/i386/head.o $(LIBPAYLOAD) $(LIBGCC)
42         @ strip $@
43
44 .S.o:
45         $(AS) --32 -o $@ $<
46
47 .c.o:
48         $(CC) $(CROSS_CFLAGS) $(CFLAGS) -c -o $@ $<