Revision: | 1.2 |
Committed: | Fri Mar 28 16:30:35 2003 UTC (21 years, 8 months ago) by tdb |
Branch: | MAIN |
CVS Tags: | HEAD |
Changes since 1.1: | +1 -1 lines |
State: | FILE REMOVED |
Error occurred while calculating annotation data. | |
Log Message: | Removed some un-used code from CVS. We can always resurrect this later if someone feels they want to work on it. Gone are the old perl ihost which isn't needed now, winhost which is broken and shows no sign of being fixed, and DBReporter. If someone wants to revive them, I'll undelete them :-) |
# | Content |
---|---|
1 | #!/bin/sh |
2 | |
3 | # |
4 | # i-scream Distributed Centralised Monitoring System |
5 | # Winhost configure script |
6 | # |
7 | # $Id: configure,v 1.1 2003/02/16 15:53:54 tdb Exp $ |
8 | # |
9 | |
10 | ## Config |
11 | |
12 | # This should always be the same |
13 | SRCROOT=`pwd` |
14 | |
15 | ## Write out the include file for the Makefile's |
16 | |
17 | echo "> Generating Makefile includes" |
18 | echo " + writing root of source tree" |
19 | echo "SOURCEROOT=${SRCROOT}" > ${SRCROOT}/Config.inc |
20 | echo " + writing include" |
21 | echo "include \$(SOURCEROOT)/Config2.inc" >> ${SRCROOT}/Config.inc |
22 | |
23 | echo "> Configure Completed" |
24 | |
25 | ## End |