ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/filter/Makefile
Revision: 1.16
Committed: Wed Mar 7 23:19:13 2001 UTC (23 years, 2 months ago) by tdb
Branch: MAIN
Changes since 1.15: +2 -2 lines
Log Message:
Made an abstract skeleton class for the service checks. They all do very similar
things, so it seemed worth putting all the behaviour in one place. This also has
another advantage, namely that service checks are now much quicker to produce,
and that in the future the checks could even be moved to a general checker that
reads from the configuration.

File Contents

# User Rev Content
1 tdb 1.13 # Makefile for uk.ac.ukc.iscream.filter
2 tdb 1.16 # $Id: Makefile,v 1.15 2001/02/11 18:04:22 ajm4 Exp $
3 tdb 1.1
4 tdb 1.14 # Config Include
5     include ../../../../../Config.inc
6 tdb 1.1
7 tdb 1.14 # Defining Filenames (these will be built)
8 tdb 1.1
9 tdb 1.14 JAVA = FilterMain.java FilterServant.java FilterThread.java\
10     TCPReader.java TCPReaderInit.java UDPReader.java\
11 ajm 1.15 PluginFilterManager.java PluginFilter.java\
12     PluginServiceCheck.java PluginServiceCheckPipeline.java\
13 tdb 1.16 PluginServiceCheckManager.java ServiceCheckSkeleton.java
14 tdb 1.1
15 tdb 1.14 # Build Rules
16 tdb 1.13 all : filter plugins
17    
18 tdb 1.14 filter : DOBUILD
19 tdb 1.13
20     plugins : mkplugins
21     mkplugins :
22     cd plugins && $(MAKE) all
23 tdb 1.1
24 tdb 1.14 clean : DOCLEAN
25 tdb 1.13 cd plugins && $(MAKE) clean
26 tdb 1.1
27 tdb 1.14 # Main Include
28     include $(MKINC)