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.13.2.4
Committed: Tue Dec 12 02:46:03 2000 UTC (23 years, 5 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.13.2.3: +7 -4 lines
Log Message:
Done some more tidying on all the Makefiles. This should have solve the current
dependency problem that seemed to be occuring with the java source files. The
only dependency that's now not quite in place is the IDL stuff. This should be
easily fixable.

File Contents

# Content
1 # Makefile for uk.ac.ukc.iscream.filter
2 # $Id: Makefile,v 1.13.2.3 2000/12/12 01:54:09 tdb1 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
13 # Build Rules
14 all : filter plugins
15
16 filter : DOBUILD
17
18 plugins : mkplugins
19 mkplugins :
20 cd plugins && $(MAKE) all
21
22 clean : DOCLEAN
23 cd plugins && $(MAKE) clean
24
25 # Main Include
26 include $(MKINC)