Skip to content

Commit e8ee759

Browse files
authored
Merge pull request #312 from mikeller/add_clean_task
Added 'clean' task to Makefile.
2 parents b607a67 + 94a5b63 commit e8ee759

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
all:
22
bin/build.sh
33

4-
release: all
4+
clean:
5+
rm -rf obj/*
6+
7+
release: clean all
58
FILE_NAME="betaflight-tx-lua-scripts_$$(git describe --abbrev=0 --tags).zip"; \
69
rm -f $${FILE_NAME}; \
710
zip -r $${FILE_NAME} obj/

0 commit comments

Comments
 (0)