.phony: default,mrproper

default: hexout

mrproper: clean

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

clean:
	rm hexout.o
	rm hexout
