.phony: default,mrproper

default: hello

mrproper: clean

hello: hello.asm
	nasm -f aout hello.asm
	ld -s -o hello hello.o

clean:
	rm hello.o
	rm hello
