From: andi <bin...@li...> - 2001-09-12 18:15:11
|
andi Wed Sep 12 11:15:06 2001 EDT Modified files: /r2/binarycloud/user Makefile Log: Changes to match php.xml format Index: r2/binarycloud/user/Makefile diff -u r2/binarycloud/user/Makefile:1.7 r2/binarycloud/user/Makefile:1.8 --- r2/binarycloud/user/Makefile:1.7 Thu Aug 23 17:07:45 2001 +++ r2/binarycloud/user/Makefile Wed Sep 12 11:15:06 2001 @@ -1,5 +1,5 @@ # {{{ Header -# -File $Id: Makefile,v 1.7 2001/08/24 00:07:45 alex Exp $ +# -File $Id: Makefile,v 1.8 2001/09/12 18:15:06 andi Exp $ # -License LGPL (http://www.gnu.org/copyleft/lesser.html) # -Copyright 2001, Intacct Corp. # -Author odysseas tsatalos, ody...@ya... @@ -20,7 +20,7 @@ # the line below can be replace with the actual listing of all the # application files in user USERFILES=`find $(USERDIRS) -name '*' | grep '[.]' | grep -v htdocs` -XML_PAGEDEF_FILES=`find htdocs -name '*.xml.php' | grep '[.]'` +XML_PAGEDEF_FILES=`find htdocs -name '*.php.xml' | grep '[.]'` all: site user xml_page_def xml_conf_def @@ -31,15 +31,16 @@ @$(INSTALLCODE) $(USERBUILD_DIR) $(USERFILES) xml_page_def: - @echo "in user/htdocs (xml.php page definition files)"; + @echo "in user/htdocs (php.xml page definition files)"; @xml_files=$(XML_PAGEDEF_FILES); \ for i in $$xml_files ; do \ $(XML2PHP) $(SITEBUILD_DIR) page_def $(USER_DIR)/$$i $(BUILD_DIR)/$$i; \ done xml_conf_def: - @echo "in user/conf (xml.php configuration files)"; - @$(XML2PHP) $(SITEBUILD_DIR) conf_def $(USER_DIR)/conf/conf.xml.php $(USERBUILD_DIR)/conf/conf.xml.php - @$(XML2PHP) $(SITEBUILD_DIR) lang_def $(USER_DIR)/conf/langs.xml.php $(USERBUILD_DIR)/conf/langs.xml.php - @$(XML2PHP) $(SITEBUILD_DIR) datasources_def $(USER_DIR)/conf/datasources.xml.php $(USERBUILD_DIR)/conf/datasources.xml.php - @$(XML2PHP) $(SITEBUILD_DIR) operations_def $(USER_DIR)/conf/operations.xml.php $(USERBUILD_DIR)/conf/operations.xml.php \ No newline at end of file + @echo "in user/conf (php.xml configuration files)"; + @$(XML2PHP) $(SITEBUILD_DIR) conf_def $(USER_DIR)/conf/Configuration.php.xml $(USERBUILD_DIR)/conf/Configuration.php.xml + @$(XML2PHP) $(SITEBUILD_DIR) lang_def $(USER_DIR)/conf/Languages.php.xml $(USERBUILD_DIR)/conf/Languages.php.xml + @$(XML2PHP) $(SITEBUILD_DIR) datasources_def $(USER_DIR)/conf/Datasources.php.xml $(USERBUILD_DIR)/conf/Datasources.php.xml + @$(XML2PHP) $(SITEBUILD_DIR) operations_def $(USER_DIR)/conf/Operations.php.xml $(USERBUILD_DIR)/conf/Operations.php.xml + |