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
Committed: Wed Dec 6 22:57:45 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Branch point for: SERVER_PACKAGEBUILD
Changes since 1.12: +12 -4 lines
Log Message:
Added the new Plugin Manager bits.

File Contents

# User Rev Content
1 tdb 1.13 # Makefile for uk.ac.ukc.iscream.filter
2     # $Id: Makefile,v 1.12 2000/12/06 18:33:57 tdb1 Exp $
3 tdb 1.1
4 tdb 1.11 # Defining Filenames
5 tdb 1.1
6 tdb 1.11 CLASS = FilterMain.class FilterServant.class FilterThread.class\
7 tdb 1.13 TCPReader.class TCPReaderInit.class UDPReader.class\
8     PluginFilterManager.class PluginFilter.class
9 tdb 1.1
10 tdb 1.11 IDL = ../../../../../idl/.madeidl
11     IDLFILES = ../../../../../idl/uk
12     IDLMAKE = cd ../../../../.. && $(MAKE) idl
13 tdb 1.1
14 tdb 1.11 # Defining "shortcuts" for building
15 tdb 1.1
16 tdb 1.13 all : filter plugins
17    
18     filter : $(IDL) $(CLASS)
19    
20     plugins : mkplugins
21     mkplugins :
22     cd plugins && $(MAKE) all
23 tdb 1.1
24     clean :
25 tdb 1.11 rm -f $(CLASS)
26 tdb 1.13 cd plugins && $(MAKE) clean
27 tdb 1.1
28 tdb 1.4 update :
29 tdb 1.11 cvs -q -d /usr/local/proj/co600_10/cvs update -d
30 tdb 1.1
31     # Dependencies, and building
32    
33 tdb 1.11 # clever catchall to build any .class file from a .java file
34 tdb 1.2 %.class : %.java
35     javac $<
36 tdb 1.1
37 tdb 1.11 $(IDL) : ../../../../../idl/iscream.idl
38 tdb 1.3 $(IDLMAKE)