From: Alex B. <en...@tu...> - 2001-09-29 00:33:04
|
hey all, anyone have comments/etc on this make configuration file? I'm going to check this in at binarycloud/user/bcdev/conf/MakeConf.php.xml ------- -alex <?xml version="1.0" ?> <!-- // {{{ Header -File $Id: header.ml,v 1.1 2001/06/21 05:00:45 alex Exp $ -License LGPL (http://www.gnu.org/copyleft/lesser.html) -Copyright 2001, The Turing Studio, Inc. -Author alex black, en...@tu... // }}} --> <makeconf> <!-- This is a freetext site name --> <site_name>Freetext Site Name</site_name> <!-- use zend encoder to encode all php files in build --> <encode> <command>/path/to/encoder -flag</command> </encode> <!-- strip comments from code --> <strip_comments>true</strip_comments> <!-- auto run phpdoc on each file if the make target is 'all' --> <autodoc>true</autodoc> <core> <!-- use shared binarycloud core? --> <use_shared>true</use_shared> <!-- if so, where should the symlink point to? --> <path>/path/to/somewhere/</path> </core> <!-- during make, compare this site source tree with the default site source tree, and add any missing files to the build directory --> <use_default>true</use_default> <!-- as per http://www.w3.org/International/O-charset-lang.html --> <!-- this allows a developer to _develop_ a source tree that is intended fr multi-language makes, but only make one language during development. this is convenient if you are making lots of logic changes that don't require you to see/make all of the languages you have in Languages.php.xml --> <make_force_lang>en</make_force_lang> <!-- Parse source files with bcc to search for binarycloud and other custom tags? --> <use_bcc>true</use_bcc> </makeconf> |