From: alex <bin...@li...> - 2001-09-25 19:55:57
|
alex Tue Sep 25 12:55:51 2001 EDT Removed files: /r2/binarycloud/make Makefile Makefile.in Modified files: /r2/binarycloud/base/core Makefile /r2/binarycloud/user Makefile Log: Don't need make/ and some Makefile changes. Index: r2/binarycloud/base/core/Makefile diff -u r2/binarycloud/base/core/Makefile:1.6 r2/binarycloud/base/core/Makefile:1.7 --- r2/binarycloud/base/core/Makefile:1.6 Wed Jul 25 13:58:13 2001 +++ r2/binarycloud/base/core/Makefile Tue Sep 25 12:55:51 2001 @@ -1,5 +1,5 @@ # {{{ Header -# -File $Id: Makefile,v 1.6 2001/07/25 20:58:13 alex Exp $ +# -File $Id: Makefile,v 1.7 2001/09/25 19:55:51 alex Exp $ # -License LGPL (http://www.gnu.org/copyleft/lesser.html) # -Copyright 2001, Intacct Corp. # -Author odysseas tsatalos, ody...@ya... @@ -14,6 +14,7 @@ Page.php \ Perm.php \ Sess.php \ + Request.php \ error_codes_eng.php \ error_handler.php \ $(EMPTY) Index: r2/binarycloud/user/Makefile diff -u r2/binarycloud/user/Makefile:1.8 r2/binarycloud/user/Makefile:1.9 --- r2/binarycloud/user/Makefile:1.8 Wed Sep 12 11:15:06 2001 +++ r2/binarycloud/user/Makefile Tue Sep 25 12:55:51 2001 @@ -1,46 +1,47 @@ -# {{{ Header -# -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... -# }}} - -include ../Makefile.in - -USERDIRS= \ - cache \ - db \ - lang \ - lib \ - mod \ - roles \ - tmpl \ - $(EMPTY) - -# 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 '*.php.xml' | grep '[.]'` - -all: site user xml_page_def xml_conf_def - -site: - @echo "in user/htdocs"; cd htdocs; make --no-print-directory - -user: - @$(INSTALLCODE) $(USERBUILD_DIR) $(USERFILES) - -xml_page_def: - @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 (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 - +# {{{ Header +# -File $Id: Makefile,v 1.9 2001/09/25 19:55:51 alex Exp $ +# -License LGPL (http://www.gnu.org/copyleft/lesser.html) +# -Copyright 2001, Intacct Corp. +# -Author odysseas tsatalos, ody...@ya... +# }}} + +include ../Makefile.in + +USERDIRS= \ + cache \ + conf \ + db \ + lang \ + lib \ + mod \ + roles \ + tmpl \ + $(EMPTY) + +# 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 '*.php.xml' | grep '[.]'` + +all: site user xml_page_def xml_conf_def + +site: + @echo "in user/htdocs"; cd htdocs; make --no-print-directory + +user: + @$(INSTALLCODE) $(USERBUILD_DIR) $(USERFILES) + +xml_page_def: + @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 (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 + |