Files
EasySoft-ZenTaoPMS/module/svn/syncer/Makefile
wangchunsheng cfbba8c5f6 * rename the syner.php to syncer.php
+ add Makefile.
2011-11-09 02:35:49 +00:00

15 lines
264 B
Makefile

VERSION=$(shell head -n 1 VERSION)
all: zip
clean:
rm -fr syncer
rm -fr *.zip
zip:
mkdir -p syncer/
cp -fr ../../../lib/api/api.class.php syncer/
cp -fr config.php syncer/
cp -fr syncer.php syncer/
zip -r -9 svnsyncer.$(VERSION).zip syncer
rm -fr syncer