10 lines
213 B
Makefile
10 lines
213 B
Makefile
|
|
PROJECT = crops
|
|
all: release
|
|
|
|
release:
|
|
VERSION=`git describe --tags`; \
|
|
git archive --format zip --output "$(PROJECT)-$${VERSION}.zip" --prefix=$(PROJECT)/ master
|
|
|
|
poupdate:
|
|
../intllib/tools/xgettext.sh *.lua
|