all: nostd.o RUSTC = rustc # FLAGS = -C opt-level=2 -Z no-landing-pads --target thumbv7m-none-eabi -g --emit obj -L libcore-thumbv7m FLAGS = -C opt-level=2 -Z no-landing-pads -g --emit obj clean: rm -f *.elf *~ *.o %.o: %.rs $(RUSTC) $(FLAGS) -o $@ $<