]> Joshua Wise's Git repositories - netwatch.git/blob - aseg/Makefile
5bef71f801b5aff0b92f294a65004b985a7f8898
[netwatch.git] / aseg / Makefile
1 all: aseg.elf
2
3 aseg.bin: aseg.asm
4         nasm -o aseg.bin aseg.asm
5
6 aseg.o: aseg.bin
7         objcopy -I binary -B i386 -O elf32-i386 aseg.bin aseg.o
8
9 aseg.elf: aseg.bin aseg.lds counter.o
10         ld -o aseg.elf -T aseg.lds counter.o
This page took 0.016996 seconds and 2 git commands to generate.