SMM: remove hack that was needed back in oldconfig times.
[coreboot.git] / src / cpu / x86 / smm / Makefile.inc
1 ##
2 ## This file is part of the coreboot project.
3 ##
4 ## Copyright (C) 2008 coresystems GmbH
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; either version 2 of the License, or
9 ## (at your option) any later version.
10 ##
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ## GNU General Public License for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, write to the Free Software
18 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 ##
20
21 obj-$(CONFIG_HAVE_SMI_HANDLER) += smmrelocate.o
22 obj-$(CONFIG_HAVE_SMI_HANDLER) += smm_bin.o
23
24 smmobj-y += smmhandler.o
25 smmobj-y += smihandler.o
26 smmobj-y += smiutil.o
27
28 ifdef POST_EVALUATION
29
30 $(obj)/cpu/x86/smm/smm.o: $(smmobjs)
31         $(CC) $(LDFLAGS) -nostdlib -r -o $@ $^
32
33 $(obj)/cpu/x86/smm/smm: $(obj)/cpu/x86/smm/smm.o $(src)/cpu/x86/smm/smm.ld $(obj)/ldoptions
34         $(CC) $(LDFLAGS) -nostdlib -nostartfiles -static -o $(obj)/cpu/x86/smm/smm.elf -T $(src)/cpu/x86/smm/smm.ld $(obj)/cpu/x86/smm/smm.o
35         $(NM) -n $(obj)/cpu/x86/smm/smm.elf | sort > $(obj)/cpu/x86/smm/smm.map
36         $(OBJCOPY) -O binary $(obj)/cpu/x86/smm/smm.elf $(obj)/cpu/x86/smm/smm
37
38 $(obj)/cpu/x86/smm/smm_bin.c: $(obj)/cpu/x86/smm/smm
39         (echo 'unsigned char smm[] = {'; od -vtx1 $(obj)/cpu/x86/smm/smm | sed -e 's,^[0-9]* *,,' -e 's:[0-9a-f][0-9a-f] :0x&,:g' -e 's:[0-9a-f][0-9a-f]$$:0x&,:'; echo '}; unsigned int smm_len = '; wc -c $(obj)/cpu/x86/smm/smm |awk '{print $$1;}' ; echo ';')  > $@
40
41 $(obj)/cpu/x86/smm/smm_bin.o: $(obj)/cpu/x86/smm/smm_bin.c
42         @printf "    CC         $(subst $(obj)/,,$(@))\n"
43         $(CC) $(CFLAGS) -c -o $@ $<
44
45 endif
46