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.10
Committed: Wed Mar 7 01:55:49 2001 UTC (23 years, 2 months ago) by tdb
Branch: MAIN
Changes since 1.9: +3 -2 lines
Log Message:
Added a new part of the local client called the WebFeeder. This class consists
of three parts;
WebFeeder__Monitor: provides a feed of XMLPackets to the WebFeeder
WebFeeder__Alerter: provides a feed of Alerts to the WebFeeder
WebFeeder: a singleton class that will manage dumping of XMLPackets and Alerts
This data will be written out in a textual format, although this secion has not
been completed.
The WebFeeder may also provide configuration information, if required.

File Contents

# Content
1 # Makefile for uk.ac.ukc.iscream.client
2 # $Id: Makefile,v 1.9 2001/03/06 22:33:01 tdb1 Exp $
3
4 # Config Include
5 include ../../../../../Config.inc
6
7 # Defining Filenames (these will all be built)
8
9 JAVA = ClientServant.java ClientMain.java PluginMonitor.java\
10 MonitorManager.java Alert.java PluginAlerter.java\
11 AlerterManager.java Register.java MonitorSkeleton.java\
12 WebFeeder.java
13
14 # Build Rule
15 all : client monitors alerters
16
17 client : DOBUILD
18
19 monitors : mkmonitors
20 mkmonitors :
21 cd monitors && $(MAKE) all
22 alerters : mkalerters
23 mkalerters :
24 cd alerters && $(MAKE) all
25
26 clean : DOCLEAN
27 cd monitors && $(MAKE) clean
28 cd alerters && $(MAKE) clean
29
30 # Main Include
31 include $(MKINC)