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.14
Committed: Wed Dec 13 18:34:28 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.13: +12 -24 lines
Log Message:
MERGE: Merged the SERVER_PACKAGEBUILD branch back into the HEAD trunk.

File Contents

# User Rev Content
1 tdb 1.13 # Makefile for uk.ac.ukc.iscream.filter
2 tdb 1.14 # $Id: Makefile,v 1.13.2.4 2000/12/12 02:46:03 tdb1 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     PluginFilterManager.java PluginFilter.java
12 tdb 1.1
13 tdb 1.14 # Build Rules
14 tdb 1.13 all : filter plugins
15    
16 tdb 1.14 filter : DOBUILD
17 tdb 1.13
18     plugins : mkplugins
19     mkplugins :
20     cd plugins && $(MAKE) all
21 tdb 1.1
22 tdb 1.14 clean : DOCLEAN
23 tdb 1.13 cd plugins && $(MAKE) clean
24 tdb 1.1
25 tdb 1.14 # Main Include
26     include $(MKINC)