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.20
Committed: Fri Mar 22 10:43:06 2002 UTC (22 years, 2 months ago) by tdb
Branch: MAIN
Changes since 1.19: +2 -2 lines
Log Message:
Split the CORBA side of the filter in two. The Filter interface still does
the receiving of data, just like it used to. This can optionally be turned
off in the configuration if required. The new interface, FilterInfo, is
used to provide information (host and ports) to other parts of the server
about the Filter - namely the FilterManager. This split has been done so
that the data receiving part of the Filter can be turned off, without
breaking the FilterManager.

File Contents

# User Rev Content
1 tdb 1.18 # Makefile for uk.org.iscream.cms.server.filter
2 tdb 1.20 # $Id: Makefile,v 1.19 2002/03/21 17:44:51 tdb Exp $
3 tdb 1.1
4 tdb 1.14 # Config Include
5 tdb 1.18 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.19 PluginServiceCheckManager.java ServiceCheckSkeleton.java\
14 tdb 1.20 KeyManager.java FilterInfoServant.java
15 tdb 1.1
16 tdb 1.14 # Build Rules
17 tdb 1.13 all : filter plugins
18    
19 tdb 1.14 filter : DOBUILD
20 tdb 1.13
21     plugins : mkplugins
22     mkplugins :
23     cd plugins && $(MAKE) all
24 tdb 1.1
25 tdb 1.14 clean : DOCLEAN
26 tdb 1.13 cd plugins && $(MAKE) clean
27 tdb 1.1
28 tdb 1.14 # Main Include
29     include $(MKINC)