.phony: default,mrproper

default: table

mrproper: clean

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

clean:
	rm table.o
	rm table
