seeddms-code/Makefile

24 lines
711 B
Makefile
Raw Normal View History

VERSION=3.2.0-RC1
2011-07-21 13:37:28 +00:00
SRC=CHANGELOG* inc conf utils index.php languages op out README reset_db.sql drop-tables-innodb.sql delete_all_contents.sql styles js TODO UPDATE-* LICENSE Makefile debian webdav install
dist:
mkdir -p tmp/letoDMS-$(VERSION)
cp -a $(SRC) tmp/letoDMS-$(VERSION)
(cd tmp; tar --exclude=.svn -czvf ../LetoDMS-$(VERSION).tar.gz letoDMS-$(VERSION))
rm -rf tmp
pear:
2011-02-18 16:21:11 +00:00
(cd LetoDMS_Core/; pear package)
(cd LetoDMS_Lucene/; pear package)
webdav:
mkdir -p tmp/letoDMS-webdav-$(VERSION)
cp webdav/* tmp/letoDMS-webdav-$(VERSION)
(cd tmp; tar --exclude=.svn -czvf ../LetoDMS-webdav-$(VERSION).tar.gz letoDMS-webdav-$(VERSION))
rm -rf tmp
doc:
2011-01-20 14:42:23 +00:00
phpdoc -d LetoDMS_Core -t html
.PHONY: webdav