Born on Stahl's Birthday.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
298 B

.PHONY: all lib examples flash clean clean-lib clean-examples
all: flash
flash: examples
$(MAKE) -C examples program
examples: lib
$(MAKE) -C examples all
lib:
$(MAKE) -C src all
clean: clean-lib clean-examples
clean-lib:
$(MAKE) -C src clean
clean-examples:
$(MAKE) -C examples clean