Browse Source

Merge pull request #36 from craftyguy/V2.0-make-clean-no-fail

makefile: ignore errors during clean
V3.0
ReFil 3 years ago committed by GitHub
parent
commit
754f13303d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Makefile

2
Makefile

@ -8,7 +8,7 @@ all: setup build
build: firmware/$$(TIMESTAMP)-left.uf2 firmware/$$(TIMESTAMP)-right.uf2 build: firmware/$$(TIMESTAMP)-left.uf2 firmware/$$(TIMESTAMP)-right.uf2
clean: clean:
rm ./firmware/*.uf2 rm -f firmware/*.uf2
firmware/%-left.uf2 firmware/%-right.uf2: config/adv360.keymap firmware/%-left.uf2 firmware/%-right.uf2: config/adv360.keymap
$(DOCKER) run --rm -it --name zmk \ $(DOCKER) run --rm -it --name zmk \

Loading…
Cancel
Save