Allow parallel 'make rebuild'
This commit is contained in:
parent
806962d5c7
commit
156143d850
1 changed files with 5 additions and 1 deletions
|
@ -183,7 +183,11 @@ flash: $(FW_FILE_1) $(FW_FILE_2)
|
||||||
test: flash
|
test: flash
|
||||||
screen $(ESPPORT) 115200
|
screen $(ESPPORT) 115200
|
||||||
|
|
||||||
rebuild: clean all
|
# the rebuild target is written like this so it can be run in a parallel build
|
||||||
|
# environment without causing weird side effects
|
||||||
|
rebuild:
|
||||||
|
$(MAKE) clean
|
||||||
|
$(MAKE) all
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(Q) rm -rf $(BUILD_DIR)
|
$(Q) rm -rf $(BUILD_DIR)
|
||||||
|
|
Loading…
Reference in a new issue