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.19
Committed: Thu Mar 21 17:44:51 2002 UTC (22 years, 2 months ago) by tdb
Branch: MAIN
Changes since 1.18: +3 -2 lines
Log Message:
Initial work on host authentication for the server. Until I can get ihost
doing it's side of the host authentication I can't really test any further.
It seems to work, as in it filters data which isn't authenticated when told
to do so in the config :)

File Contents

# Content
1 # Makefile for uk.org.iscream.cms.server.filter
2 # $Id: Makefile,v 1.18 2001/05/29 17:02:35 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
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)