X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/4bea7daf0e70a1540b8533c8253c197bb282416e..9b8c947be2d07e7c5006a92127e58b6022718cbd:/aseg/Makefile diff --git a/aseg/Makefile b/aseg/Makefile index 5bef71f..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 counter.o - ld -o aseg.elf -T aseg.lds counter.o +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