summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlek Du <alek.du@intel.com>2008-08-27 12:43:56 +0800
committerPatrick Tjin <pattjin@google.com>2014-07-21 20:22:38 -0700
commit56ce5adc402b046a8531047f48d2aef778baebd1 (patch)
tree8a9fa85c69950d6424b3f066b00c3317f68b503e /Makefile
parentb7b3000b47443bd625f6bad0a89ce5b86d2b5b3d (diff)
downloadbootstub-56ce5adc402b046a8531047f48d2aef778baebd1.tar.gz
Modify destination address above 16MB
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 2e366a1..0c89f9c 100644
--- a/Makefile
+++ b/Makefile
@@ -11,13 +11,13 @@ bootstub.bin:bootstub.elf
bootstub.elf:bootstub.lds $(OBJ)
ld -m elf_i386 -T bootstub.lds $(OBJ) -o $@
-bootstub.o:bootstub.c
+bootstub.o:bootstub.c bootstub.h
gcc -Wall -c bootstub.c
-spi-uart.o:spi-uart.c
+spi-uart.o:spi-uart.c spi-uart.h
gcc -Wall -c spi-uart.c
-head.o:head.S
+head.o:head.S bootstub.h
gcc -Wall -c head.S
clean: