summaryrefslogtreecommitdiff
path: root/makefile
blob: 3725a30acc1f9f3f651fcc901c3cd48e85488256 (plain)
1
2
3
4
5
all:
	nasm sh.asm -f elf64 -o sh.o
	ld sh.o -o sh
clean:
	rm -f sh.o sh