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

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