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