kopia lustrzana https://github.com/inkstitch/inkstitch
19 wiersze
467 B
Makefile
19 wiersze
467 B
Makefile
EXTENSIONS:=embroider embroider_params embroider_simulate embroider_update
|
|
|
|
# This gets the branch name or the name of the tag
|
|
VERSION:=$(TRAVIS_BRANCH)
|
|
OS:=$(shell uname)
|
|
ARCH:=$(shell uname -m)
|
|
|
|
dist: distclean
|
|
bin/build-dist $(EXTENSIONS)
|
|
cp *.inx dist
|
|
cd dist; tar zcf ../inkstitch-$(VERSION)-$(OS)-$(ARCH).tar.gz *
|
|
|
|
distclean:
|
|
rm -rf build dist *.spec *.tar.gz
|
|
|
|
messages.po: embroider*.py inkstitch.py
|
|
rm -f messages.po
|
|
xgettext embroider*.py inkstitch.py
|