You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ktweak/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