Skip to content

Commit

Permalink
makefile: remove leading ./ from path in clean
Browse files Browse the repository at this point in the history
assume that `make clean` is being run from the top level repo dir
  • Loading branch information
craftyguy committed Oct 24, 2022
1 parent 55a7e30 commit 9f87850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ all: setup build
build: firmware/$$(TIMESTAMP)-left.uf2 firmware/$$(TIMESTAMP)-right.uf2

clean:
rm -f ./firmware/*.uf2
rm -f firmware/*.uf2

firmware/%-left.uf2 firmware/%-right.uf2: config/adv360.keymap
docker run --rm -it --name zmk \
Expand Down

0 comments on commit 9f87850

Please sign in to comment.