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
291 B
21 lines
291 B
.PHONY: all lib example flash clean clean-lib clean-examples
|
|
|
|
all: flash
|
|
|
|
lib:
|
|
$(MAKE) -C src lib
|
|
|
|
example: lib
|
|
$(MAKE) -C examples
|
|
|
|
flash: example
|
|
$(MAKE) -C examples program
|
|
|
|
clean: clean-lib clean-examples
|
|
|
|
clean-lib:
|
|
$(MAKE) -C src clean
|
|
|
|
clean-examples:
|
|
$(MAKE) -C examples clean
|
|
|
|
|