]> Joshua Wise's Git repositories - netwatch.git/blame - aseg/Makefile
cleanup
[netwatch.git] / aseg / Makefile
CommitLineData
31be35cd
JW
1CC=gcc
2CFLAGS=-I../include -nostdlib -nostdinc -fno-builtin
7e16b8e6 3OBJS=counter.o ../pci/pci-raw.o ../lib/minilib.o ../lib/console.o
035d7af7 4
f54c68a0
JW
5all: aseg.elf
6
7aseg.bin: aseg.asm
8 nasm -o aseg.bin aseg.asm
9
10aseg.o: aseg.bin
11 objcopy -I binary -B i386 -O elf32-i386 aseg.bin aseg.o
12
31be35cd
JW
13aseg.elf: aseg.lds aseg.o $(OBJS)
14 ld -o aseg.elf -T aseg.lds $(OBJS)
7e16b8e6
JP
15
16clean:
17 rm -f $(OBJS) aseg.elf aseg.bin aseg.o
This page took 0.02433 seconds and 4 git commands to generate.