X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/2745bcf912e2230ef948b3e0d636bbd16e3fefb6..399b932481303c09ebed1cfaaa88538ffa4746ba:/netwatch/Makefile

diff --git a/netwatch/Makefile b/netwatch/Makefile
index 9609e03..11a837b 100644
--- a/netwatch/Makefile
+++ b/netwatch/Makefile
@@ -1,9 +1,12 @@
-CC=gcc-4.3
-CFLAGS=-I../include -I../include/raw \
-       -I../lwip/src/include -I../lwip/src/include/ipv4 \
-       -nostdlib -nostdinc -fno-builtin -D__RAW__ \
-       -Wall -Werror -std=gnu99 -Wstrict-aliasing=2 \
-       -O1 -fno-merge-constants -fno-strict-aliasing
+-include ../config.mk
+-include ../ich2/config.mk
+
+CC=$(CROSS)gcc
+CFLAGS+=-I../include -I../include/raw \
+        -I../lwip/src/include -I../lwip/src/include/ipv4 \
+        -nostdlib -nostdinc -fno-builtin -D__RAW__ \
+        -Wall -Werror -std=gnu99 -Wstrict-aliasing=2 \
+        -O1 -fno-merge-constants -fno-strict-aliasing
 
 STUBOBJS=entry.o pagingstub-asm.o pagingstub.o
 
@@ -34,9 +37,7 @@ LWIP_OBJS = \
 	../lwip/src/netif/ethernetif.o
 
 
-OBJS =	../ich2/smi.o \
-	../ich2/smram-ich2.o \
-	../ich2/ich2-timer.o \
+OBJS =	$(CHIP_OBJS) \
 	../pci/pci.o \
 	../pci/pci-raw.o \
 	../pci/pci-bother.o \
@@ -72,12 +73,12 @@ OBJS =	../ich2/smi.o \
 all: aseg.elf
 
 aseg.elf: netwatch-large.lds $(STUBOBJS) $(OBJS)
-	ld -o aseg.elf -T netwatch-large.lds $(STUBOBJS) $(OBJS)
+	$(CROSS)ld -o aseg.elf -T netwatch-large.lds $(STUBOBJS) $(OBJS)
 
 clean:
 	rm -f $(OBJS) aseg.elf entry.bin entry.o
 
 %.o: %.asm
 	nasm -o $@.bin $<
-	objcopy -I binary -B i386 -O elf32-i386 $@.bin $@
+	$(CROSS)objcopy -I binary -B i386 -O elf32-i386 $@.bin $@
 	rm -f $@.bin