X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/f54c68a085c376bf5e2d64b50aab28a3f46d0eac..892ed40808f5d25dc1e4afde20e7ec33d07ae245:/aseg/Makefile diff --git a/aseg/Makefile b/aseg/Makefile index f86bc2a..5676489 100644 --- a/aseg/Makefile +++ b/aseg/Makefile @@ -1,3 +1,5 @@ +CFLAGS=-I../include + all: aseg.elf aseg.bin: aseg.asm @@ -6,5 +8,5 @@ aseg.bin: aseg.asm aseg.o: aseg.bin objcopy -I binary -B i386 -O elf32-i386 aseg.bin aseg.o -aseg.elf: aseg.bin aseg.lds - ld -o aseg.elf -T aseg.lds \ No newline at end of file +aseg.elf: aseg.o aseg.lds counter.o ../pci/pci-smm.o + ld -o aseg.elf -T aseg.lds counter.o ../pci/pci-smm.o