summaryrefslogtreecommitdiffstats
path: root/makefile
blob: d2cf0bacd97203c6bfee24f1887c60c7a3a5ebec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
nextchar: nextchar.o
	ld -m elf_x86_64 -o nextchar nextchar.o
nextchar.o: nextchar.asm
	nasm -f elf64 -g -F stabs nextchar.asm -l nextchar.lst
strip: strip.o
	ld -m elf_x86_64 -o strip strip.o
strip.o: nextchar.asm
	nasm -f elf64 nextchar.asm -o strip.o
clean:
	rm *.lst
	rm *.o
	rm nextchar
	rm strip