From: Joshua Wise Date: Sat, 3 Oct 2009 06:41:48 +0000 (-0400) Subject: fix Makefile to point to the correct .lds X-Git-Url: http://git.joshuawise.com/netwatch.git/commitdiff_plain/2745bcf912e2230ef948b3e0d636bbd16e3fefb6 fix Makefile to point to the correct .lds --- diff --git a/netwatch/Makefile b/netwatch/Makefile index 1d7621a..9609e03 100644 --- a/netwatch/Makefile +++ b/netwatch/Makefile @@ -56,6 +56,9 @@ OBJS = ../ich2/smi.o \ ../lib/console.o \ ../lib/serial.o \ ../lib/crc32.o \ + ../lib/demap.o \ + ../lib/state.o \ + ../lib/cpuid.o \ keyboard.o \ packet.o \ $(LWIP_OBJS) \ @@ -68,8 +71,8 @@ OBJS = ../ich2/smi.o \ all: aseg.elf -aseg.elf: aseg.lds $(STUBOBJS) $(OBJS) - ld -o aseg.elf -T aseg.lds $(STUBOBJS) $(OBJS) +aseg.elf: netwatch-large.lds $(STUBOBJS) $(OBJS) + ld -o aseg.elf -T netwatch-large.lds $(STUBOBJS) $(OBJS) clean: rm -f $(OBJS) aseg.elf entry.bin entry.o