all: hello.elf bufchan.elf

RUSTC = rustc

clean:
	rm -f *.elf *~

%.elf: %.rs
	$(RUSTC) $< -o $@