diff options
| author | Reinhard Panhuber <[email protected]> | 2020-07-26 12:57:16 +0200 |
|---|---|---|
| committer | Reinhard Panhuber <[email protected]> | 2020-07-26 12:57:16 +0200 |
| commit | 201dd72576a41b94a34adac9beb6da366235513c (patch) | |
| tree | 792ac21e71f560e5dc2d2eb109eb4cbed8366acb /examples/rules.mk | |
| parent | ada82b840f642681f8012cb2a46aa7577393dd30 (diff) | |
| parent | 60355720364f66fff7856c3de1d18382f7912e31 (diff) | |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'examples/rules.mk')
| -rw-r--r-- | examples/rules.mk | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/examples/rules.mk b/examples/rules.mk index 2f4c8b860..dacb81363 100644 --- a/examples/rules.mk +++ b/examples/rules.mk @@ -12,11 +12,10 @@ all: idf.py -B$(BUILD) -DBOARD=$(BOARD) build clean: - idf.py -B$(BUILD) clean + idf.py -B$(BUILD) -DBOARD=$(BOARD) clean flash: - @:$(call check_defined, SERIAL, example: SERIAL=/dev/ttyUSB0) - idf.py -B$(BUILD) -p $(SERIAL) flash + idf.py -B$(BUILD) -DBOARD=$(BOARD) flash else # GNU Make build system @@ -132,8 +131,14 @@ size: $(BUILD)/$(BOARD)-firmware.elf @$(SIZE) $< -@echo '' +.PHONY: clean clean: - rm -rf $(BUILD) + $(RM) -rf $(BUILD) + +# Print out the value of a make variable. +# https://stackoverflow.com/questions/16467718/how-to-print-out-a-variable-in-makefile +print-%: + @echo $* = $($*) # Flash binary using Jlink ifeq ($(OS),Windows_NT) |
