mirror of
				https://git.code.sf.net/p/seeddms/code
				synced 2025-10-31 13:18:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			792 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			792 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| VERSION=4.0.0-pre1
 | |
| SRC=CHANGELOG inc conf utils index.php languages views op out README README.Notification drop-tables-innodb.sql styles js TODO LICENSE Makefile 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:
 | |
| 	(cd LetoDMS_Core/; pear package)
 | |
| 	(cd LetoDMS_Lucene/; pear package)
 | |
| 	(cd LetoDMS_Preview/; 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:
 | |
| 	phpdoc -d LetoDMS_Core --ignore 'getusers.php,getfoldertree.php,config.php,reverselookup.php' -t html
 | |
| 
 | |
| .PHONY: webdav
 | 
