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

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