From bdc7d3b63f7e2c82025024f5c302f800a94ffebb Mon Sep 17 00:00:00 2001 From: rurban Date: Wed, 3 Nov 2004 16:47:53 +0000 Subject: [PATCH] for new etags git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@4081 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 831df8e52..7df5c67f7 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 2004-09-06 08:21:35 rurban Exp $ +# $Id: Makefile,v 1.7 2004-11-03 16:47:53 rurban Exp $ # user-definable settings: # for mysqladmin DBADMIN_USER=root @@ -47,13 +47,13 @@ all: TAGS TAGS: $(PHP_SRC) # etags $(PHP_SRC) if [ -f $@ ]; then /usr/bin/mv -f $@ $@~; fi - /usr/bin/find . \( -type d -regex '\(^\./lib/pear\)\|\(^\./lib/WikiDB/adodb\)\|\(^\./lib/nusoap\)\|\(^\./lib/fpdf\)\|\(^\./locale/.*/LC_MESSAGES\)' \) -prune -o -name \*.php | etags - + /usr/bin/find . \( -type d -regex '\(^\./lib/pear\)\|\(^\./lib/WikiDB/adodb\)\|\(^\./lib/nusoap\)\|\(^\./lib/fpdf\)\|\(^\./locale/.*/LC_MESSAGES\)' \) -prune -o -type f -name \*.php | etags - TAGS.full: $(PHP_SRC) if [ -f $@ ]; then /usr/bin/mv -f $@ $@~; fi # better etags # /usr/bin/find . -name \*.php -o -name \*.tmpl | etags -L - --langmap="HTML:.tmpl" -f $@ - /usr/bin/find . -name \*.php -o -name \*.tmpl | etags - -o $@ + /usr/bin/find . -type f -name \*.php -o -name \*.tmpl | etags - -o $@ locale: cd locale -- 2.45.0