]> Joshua Wise's Git repositories - netwatch.git/blob - aseg/Makefile
28a09de27b7d6f03774e0fb4929e6e09353ead3a
[netwatch.git] / aseg / Makefile
1 CC=gcc
2 CFLAGS=-I../include -nostdlib -nostdinc -fno-builtin
3 OBJS=counter.o ../pci/pci-smm.o ../lib/minilib.o ../lib/console.o
4
5 all: aseg.elf
6
7 aseg.bin: aseg.asm
8         nasm -o aseg.bin aseg.asm
9
10 aseg.o: aseg.bin
11         objcopy -I binary -B i386 -O elf32-i386 aseg.bin aseg.o
12
13 aseg.elf: aseg.lds aseg.o $(OBJS)
14         ld -o aseg.elf -T aseg.lds $(OBJS)
This page took 0.013858 seconds and 2 git commands to generate.