1
0
mirror of https://github.com/php/phd.git synced 2026-03-23 22:52:05 +01:00
Files
archived-phd/compile.php
2008-07-10 16:56:45 +00:00

19 lines
462 B
PHP

#!@php_bin@
<?php
/* $Id$ */
$base_revision = '$Revision$';
/* {{{ Find the $ROOT directory of PhD. @php_dir@ will be replaced by the PEAR
package manager. If for some reaosn this hasn't happened, fallback to the
dir containing this file */
$ROOT = "@php_dir@/phd";
if ($ROOT == "@php_dir"."@/phd") {
$ROOT = dirname(__FILE__);
}
/* }}} */
require_once $ROOT . "/config.php";
require_once $ROOT . "/include/PhDCompileOptions.class.php";
?>