summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: f645cb3062d5ce7d4591aa10f2e1bfd055511f14 (plain)
1
2
3
4
5
6
7
8
9
hello-world: hello-world.o
	ld -m elf_x86_64 -o hello-world hello-world.o
hello-world.o: hello-world.asm
	nasm -f elf64 hello-world.asm
clean:
	rm *.o
	rm hello-world
run: hello-world
	./hello-world