]>
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 |
3b3161a1 | 3 | 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 3c905.o |
035d7af7 | 4 | |
f54c68a0 JW |
5 | all: aseg.elf |
6 | ||
31be35cd JW |
7 | aseg.elf: aseg.lds aseg.o $(OBJS) |
8 | ld -o aseg.elf -T aseg.lds $(OBJS) | |
7e16b8e6 JP |
9 | |
10 | clean: | |
11 | rm -f $(OBJS) aseg.elf aseg.bin aseg.o | |
e5d94488 JP |
12 | |
13 | ||
14 | %.o: %.asm | |
15 | nasm -o $@.bin $< | |
16 | objcopy -I binary -B i386 -O elf32-i386 $@.bin $@ | |
17 | rm -f $@.bin |