From: Jeff D. <da...@da...> - 2002-01-13 18:16:34
|
On Sun, 13 Jan 2002 15:47:21 +0000 "Reini Urban" <ru...@x-...> wrote: > Any objections to use > ~$ make -f locale/Makefile If make has to be run in the top level directory, I'd prefer the Makefile also be in the top level directory. (Perhaps named "locale.mk".) Better still, let's see if we can find a way to work around the $(wildcard) problems. See if this works for you: PHP_SRC := $(shell find .. -name "*.html" -o -name "*.php") It might be good to eliminate the GNU-Make-isms in the makefile. That means doing away with $(shell), $(wildcard) and $(patsubst). We would probably have to introduce another ancillary shell script to be able to do without those. ====== And while we're on the subject: I propose we remove all the dynamically generated files from the CVS. (They should still be generated and included in all tar-balls, including nightly snapshot tarballs.) There's no point in having these under version control, and I'm getting sick of seeing all the "remake in locale" messages on phpwiki-checkins. The files I propose removing from CVS ar: locale/*/LC_MESSAGES/* locale/po/phpwiki.pot The only draw-back to this plan is that anyone who gets their PhpWiki direct from CVS will need to have the gettext utils installed in order to use i18n. Steve, where is the nightly tar-ball script run? Would the tar-ball script have any trouble in locale/Makefile? |