X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/015cd976c6ff9a00fded2edbc617daf85b7b3ca1..ce91287c57fa75fe7f4e8613f969fa1c2234aa8f:/aseg/Makefile

diff --git a/aseg/Makefile b/aseg/Makefile
index 20e5ae9..c5f33f4 100644
--- a/aseg/Makefile
+++ b/aseg/Makefile
@@ -1,10 +1,17 @@
+CC=gcc
+CFLAGS=-I../include -I../include/raw -nostdlib -nostdinc -fno-builtin -D__RAW__ -Wall -Werror -pedantic -ansi -std=gnu99
+OBJS=counter.o firstrun.o ../pci/pci-raw.o ../lib/minilib.o ../lib/console.o ../ich2/smram-ich2.o ../ich2/smi.o vga-overlay.o packet.o ../lib/sprintf.o ../lib/doprnt.o ../pci/pci.o
+
 all: aseg.elf
 
-aseg.bin: aseg.asm
-	nasm -o aseg.bin aseg.asm
+aseg.elf: aseg.lds aseg.o $(OBJS)
+	ld -o aseg.elf -T aseg.lds $(OBJS)
+
+clean:
+	rm -f $(OBJS) aseg.elf aseg.bin aseg.o
 
-aseg.o: aseg.bin
-	objcopy -I binary -B i386 -O elf32-i386 aseg.bin aseg.o
 
-aseg.elf: aseg.o aseg.lds counter.o
-	ld -o aseg.elf -T aseg.lds counter.o
+%.o: %.asm
+	nasm -o $@.bin $<
+	objcopy -I binary -B i386 -O elf32-i386 $@.bin $@
+	rm -f $@.bin