source: trunk/junk/dep-rebuild @ 1184

Revision 852, 326 bytes checked in by cdleonard@…, 4 years ago (diff)

svn:eol-style native in trunk. Also svn:executable on all scripts

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1#! /usr/bin/env php
2<?php
3
4$pwd = dirname($argv[0]);
5require_once($pwd."/utilities.php");
6
7// pushd
8chdir(IA_ROOT_DIR);
9
10// rebuild dependecy database. requires ctags!
11log_print("Rebuilding database. (this requires ctags)");
12system("./scripts/_dcbuild >./scripts/dep-check.db");
13
14// popd
15chdir($pwd);
16
17log_print('Done!');
18
19?>
Note: See TracBrowser for help on using the repository browser.