Initial commit, working Titanium mod
This commit is contained in:
commit
8508a04f51
46 changed files with 447 additions and 0 deletions
15
Makefile
Normal file
15
Makefile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
|
||||
.PHONY: zip install
|
||||
|
||||
v = bztitanium_$(shell jq -r .version info.json)
|
||||
copy:
|
||||
mkdir -p ../$(v)
|
||||
cp -rf * ../$(v)
|
||||
rm ../$(v).zip
|
||||
cd ..; zip -9 -r -y $(v).zip $(v) -x "*.xcf" -x "*.git*"
|
||||
|
||||
|
||||
install: copy
|
||||
cp -f ../$(v).zip ../../mods/
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue