upload:
	rsync -avuz $(DRYRUN) . www:src/
%.obj: %.nasm
	nasm $(DEBUG) -f elf -o $@ $<
%.exe: %.obj
	ld -o $@ $<
