mirror of
https://github.com/tytydraco/KTweak.git
synced 2024-11-14 18:12:46 +00:00
57ee0fd5a8
Signed-off-by: Tyler Nijmeh <tylernij@gmail.com>
12 lines
296 B
Makefile
12 lines
296 B
Makefile
# Written by Draco (tytydraco @ GitHub)
|
|
|
|
HASH := $(shell git rev-parse --short HEAD)
|
|
VERSION := $(shell cat module.prop | grep version= | sed "s/version=//")
|
|
|
|
zip:
|
|
make clean || true
|
|
zip -x .git\* Makefile README.md CONTRIBUTING.md -r9 ktweak-$(VERSION)_$(HASH).zip .
|
|
|
|
clean:
|
|
rm *.zip || true
|