From: <var...@us...> - 2008-09-07 10:19:14
|
Revision: 6236 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6236&view=rev Author: vargenau Date: 2008-09-07 10:19:23 +0000 (Sun, 07 Sep 2008) Log Message: ----------- /usr/bin/mv --> /bin/mv Modified Paths: -------------- trunk/Makefile Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2008-09-05 16:35:14 UTC (rev 6235) +++ trunk/Makefile 2008-09-07 10:19:23 UTC (rev 6236) @@ -60,7 +60,7 @@ all: TAGS TAGS: $(PHP_SRC) - if [ -f $@ ]; then /usr/bin/mv -f $@ $@~; fi + if [ -f $@ ]; then /bin/mv -f $@ $@~; fi # etags $(PHP_SRC) /usr/bin/find . \( -type d -regex '\(^\./lib/pear\)\|\(^\./lib/WikiDB/adodb\)\|\(^\./lib/nusoap\)\|\(^\./lib/fpdf\)\|\(^\./locale/.*/LC_MESSAGES\)' \) -prune -o -type f -name \*.php | grep .php | $(ETAGS_STDIN) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ru...@us...> - 2010-04-08 06:20:19
|
Revision: 7323 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7323&view=rev Author: rurban Date: 2010-04-08 06:20:12 +0000 (Thu, 08 Apr 2010) Log Message: ----------- add themes, add version to tardist, add cvstar target Modified Paths: -------------- trunk/Makefile Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2010-04-07 18:14:42 UTC (rev 7322) +++ trunk/Makefile 2010-04-08 06:20:12 UTC (rev 7323) @@ -1,6 +1,7 @@ # $Id$ +# gnu make only + # user-definable settings: -VERSION= # for mysqladmin DBADMIN_USER=root DBADMIN_PASS=secret @@ -14,10 +15,12 @@ ETAGS_STDIN = /usr/bin/etags -L - endif +VERSION=$(shell admin/dump-version.pl) + ifeq ("$(VERSION)", "") - TARDIST = ../phpwiki.tar.bz2 + TARDIST = phpwiki.tar.bz2 else - TARDIST = ../phpwiki-$(VERSION).tar.bz2 + TARDIST = phpwiki-$(VERSION).tar.bz2 endif DB_SQLITE_DBFILE = /tmp/phpwiki-sqlite.db @@ -74,8 +77,12 @@ cd locale make -install: install-config install-database +themes: + cd themes + make +install: install-config install-database themes + install-config: config/config.ini config/config.ini: config/config-dist.ini @@ -128,9 +135,11 @@ dist: $(TARDIST) +cvstar: ../$(TARDIST) + # --exclude='\.*' -$(TARDIST) : - tar cfj $(TARDIST) --exclude=CVS \ +../$(TARDIST) : $(PHP_SRC) + tar cfj $(TARDIST) --exclude=CVS \ --exclude=config.ini \ --exclude='*~' \ --exclude='*.bak' \ @@ -142,3 +151,6 @@ --exclude=TAGS.full \ --exclude='*.tar.bz2' \ . + +$(TARDIST) : $(PHP_SRC) + svn list -R | egrep -v "/\$" | tar cfj $(TARDIST) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ru...@us...> - 2010-04-19 09:09:20
|
Revision: 7341 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7341&view=rev Author: rurban Date: 2010-04-19 09:09:13 +0000 (Mon, 19 Apr 2010) Log Message: ----------- support current ctags 5.8 Modified Paths: -------------- trunk/Makefile Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2010-04-15 16:27:18 UTC (rev 7340) +++ trunk/Makefile 2010-04-19 09:09:13 UTC (rev 7341) @@ -7,7 +7,7 @@ DBADMIN_PASS=secret # etags (GNU Emacs 21.4.x) -ETAGS_21_5=$(shell etags --version|egrep "Ctags 5.[67]") +ETAGS_21_5=$(shell etags --version|egrep "Ctags 5.[6789]") ifeq ("$(ETAGS_21_5)", "") ETAGS_STDIN = /usr/bin/etags - else This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2012-10-01 07:39:19
|
Revision: 8334 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8334&view=rev Author: vargenau Date: 2012-10-01 07:39:13 +0000 (Mon, 01 Oct 2012) Log Message: ----------- Remove $Id$ Modified Paths: -------------- trunk/Makefile Property Changed: ---------------- trunk/Makefile Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2012-09-30 18:28:50 UTC (rev 8333) +++ trunk/Makefile 2012-10-01 07:39:13 UTC (rev 8334) @@ -1,4 +1,3 @@ -# $Id$ # gnu make only # user-definable settings: Property changes on: trunk/Makefile ___________________________________________________________________ Deleted: svn:keywords - Id This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2012-12-03 13:40:18
|
Revision: 8591 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8591&view=rev Author: vargenau Date: 2012-12-03 13:40:09 +0000 (Mon, 03 Dec 2012) Log Message: ----------- No longer a makefile in themes Modified Paths: -------------- trunk/Makefile Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2012-12-03 13:29:21 UTC (rev 8590) +++ trunk/Makefile 2012-12-03 13:40:09 UTC (rev 8591) @@ -76,12 +76,8 @@ cd locale make -themes: - cd themes - make +install: install-config install-database -install: install-config install-database themes - install-config: config/config.ini config/config.ini: config/config-dist.ini This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |