| 1 | CC=gcc |
| 2 | CFLAGS=-I../include -I../include/raw -nostdlib -nostdinc -fno-builtin -D__RAW__ -Wall -Werror -pedantic -ansi -std=gnu99 |
| 3 | |
| 4 | OBJS=counter.o firstrun.o ../pci/pci-raw.o ../lib/minilib.o ../lib/console.o \ |
| 5 | ../ich2/smram-ich2.o ../ich2/smi.o vga-overlay.o packet.o ../lib/sprintf.o \ |
| 6 | ../lib/doprnt.o ../pci/pci.o 3c905.o ../ich2/ich2-timer.o |
| 7 | |
| 8 | all: aseg.elf |
| 9 | |
| 10 | aseg.elf: aseg.lds aseg.o $(OBJS) |
| 11 | ld -o aseg.elf -T aseg.lds $(OBJS) |
| 12 | |
| 13 | clean: |
| 14 | rm -f $(OBJS) aseg.elf aseg.bin aseg.o |
| 15 | |
| 16 | |
| 17 | %.o: %.asm |
| 18 | nasm -o $@.bin $< |
| 19 | objcopy -I binary -B i386 -O elf32-i386 $@.bin $@ |
| 20 | rm -f $@.bin |