ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/client/Makefile
Revision: 1.13
Committed: Tue May 29 17:02:34 2001 UTC (22 years, 11 months ago) by tdb
Branch: MAIN
CVS Tags: HEAD
Branch point for: SERVER_PIRCBOT
Changes since 1.12: +3 -3 lines
Log Message:
Major change in the java package naming. This has been held off for some time
now, but it really needed doing. The future packaging of all i-scream products
will be;

uk.org.iscream.<product>.<subpart>.*

In the case of the central monitoring system server this will be;

uk.org.iscream.cms.server.*

The whole server has been changed to follow this structure, and tested to a
smallish extent. Further changes in other parts of the CMS will follow.

File Contents

# User Rev Content
1 tdb 1.13 # Makefile for uk.org.iscream.cms.server.client
2     # $Id: Makefile,v 1.12 2001/03/22 23:35:11 ajm4 Exp $
3 tdb 1.1
4     # Config Include
5 tdb 1.13 include ../../../../../../Config.inc
6 tdb 1.1
7     # Defining Filenames (these will all be built)
8    
9 tdb 1.4 JAVA = ClientServant.java ClientMain.java PluginMonitor.java\
10 tdb 1.6 MonitorManager.java Alert.java PluginAlerter.java\
11 tdb 1.10 AlerterManager.java Register.java MonitorSkeleton.java\
12 ajm 1.12 WebFeeder.java AlerterSkeleton.java
13 tdb 1.1
14     # Build Rule
15 tdb 1.4 all : client monitors alerters
16 tdb 1.2
17     client : DOBUILD
18    
19     monitors : mkmonitors
20     mkmonitors :
21     cd monitors && $(MAKE) all
22 tdb 1.4 alerters : mkalerters
23     mkalerters :
24     cd alerters && $(MAKE) all
25 tdb 1.2
26 tdb 1.1 clean : DOCLEAN
27 tdb 1.2 cd monitors && $(MAKE) clean
28 tdb 1.4 cd alerters && $(MAKE) clean
29 tdb 1.1
30     # Main Include
31     include $(MKINC)