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, 3 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

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