Update Makefile to pre-clean and exclude CONTRIBUTING.md

Signed-off-by: Tyler Nijmeh <tylernij@gmail.com>
latency
Tyler Nijmeh 4 years ago
parent bc9c844981
commit 57ee0fd5a8

@ -4,7 +4,8 @@ HASH := $(shell git rev-parse --short HEAD)
VERSION := $(shell cat module.prop | grep version= | sed "s/version=//")
zip:
zip -x .git\* Makefile README.md -r9 ktweak-$(VERSION)_$(HASH).zip .
make clean || true
zip -x .git\* Makefile README.md CONTRIBUTING.md -r9 ktweak-$(VERSION)_$(HASH).zip .
clean:
rm *.zip 2> /dev/null
rm *.zip || true

Loading…
Cancel
Save