Skip to content
Snippets Groups Projects
Select Git revision
  • aff466ddbfd8477880078417e2ba12e3b53c966c
  • master default
  • itm_trace
3 results

Makefile

Blame
  • 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 $< $@