Select Git revision
Forked from
Per Lindgren / rtfm-app
Source project has a limited visibility.
Makefile 271 B
TARGETS = bare0 bare1 bare2 bare3 bare4 bare5 bare6
DIR = target/thumbv7em-none-eabihf/debug/examples/
ELFS = $(addprefix $(DIR), $(TARGETS))
EELFS = $(addsuffix .elf, $(ELFS))
.PHONY: all
all: xargo $(EELFS)
xargo:
xargo build --examples
%.elf : %
cp $< $@