]>
Commit | Line | Data |
---|---|---|
31be35cd | 1 | CC=gcc |
36ce375d | 2 | CFLAGS=-I../include -I../include/raw -nostdlib -nostdinc -fno-builtin -D__RAW__ -Wall -Werror -pedantic -ansi -std=gnu99 |
20ef1208 JW |
3 | |
4 | OBJS=counter.o firstrun.o ../pci/pci-raw.o ../lib/minilib.o ../lib/console.o \ | |
4d898e0b JW |
5 | ../ich2/smram-ich2.o ../ich2/smi.o vga-overlay.o packet.o \ |
6 | ../lib/sprintf.o ../lib/doprnt.o ../pci/pci.o ../net/net.o \ | |
50d89a31 | 7 | ../ich2/ich2-timer.o ../pci/pci-bother.o ../net/3c90x.o keyboard.o |
035d7af7 | 8 | |
f54c68a0 JW |
9 | all: aseg.elf |
10 | ||
31be35cd JW |
11 | aseg.elf: aseg.lds aseg.o $(OBJS) |
12 | ld -o aseg.elf -T aseg.lds $(OBJS) | |
7e16b8e6 JP |
13 | |
14 | clean: | |
15 | rm -f $(OBJS) aseg.elf aseg.bin aseg.o | |
e5d94488 JP |
16 | |
17 | ||
18 | %.o: %.asm | |
19 | nasm -o $@.bin $< | |
20 | objcopy -I binary -B i386 -O elf32-i386 $@.bin $@ | |
21 | rm -f $@.bin |