summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFeng Tang <feng.tang@intel.com>2009-06-01 11:23:28 +0800
committerPatrick Tjin <pattjin@google.com>2014-07-21 20:22:39 -0700
commit7cc52cde55aa85061da67d64212e036ac74d9e73 (patch)
tree8b7a558f1c76b2cef950a440a5b5b6136930703a /Makefile
parenta24ea5cfb4209b37f8d42f9ed5584ae9cce85bfc (diff)
downloadbootstub-7cc52cde55aa85061da67d64212e036ac74d9e73.tar.gz
SFI: use sfi mmap table to build a e820 table for boot_parameters
Signed-off-by: Feng Tang <feng.tang@intel.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8e1f045..d6d69fa 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-OBJ=bootstub.o spi-uart.o head.o
+OBJ=bootstub.o spi-uart.o head.o sfi.o
CFLAGS=-ffreestanding -Wall
#for cross compile
#CFLAGS=-m32 -ffreestanding -Wall
@@ -20,6 +20,9 @@ bootstub.o:bootstub.c bootstub.h
spi-uart.o:spi-uart.c spi-uart.h
gcc $(CFLAGS) -c spi-uart.c
+sfi.o:sfi.c
+ gcc $(CFLAGS) -c sfi.c
+
head.o:head.S bootstub.h
gcc $(CFLAGS) -c head.S