ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/filtermanager/Makefile
Revision: 1.1
Committed: Wed Nov 29 23:42:40 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Log Message:
Makefile for the filtermanager.

File Contents

# Content
1 # Makefile for uk.ac.ukc.iscream.filtermanager
2 # $Id: Makefile,v 1.1 2000/11/27 22:07:19 tdb1 Exp $
3
4 # Defining Filenames
5
6 CLASS = FilterManager.class HostInit.class HostListener.class
7
8 IDL = ../../../../../idl/.madeidl
9 IDLFILES = ../../../../../idl/uk
10 IDLMAKE = cd ../../../../.. && $(MAKE) idl
11
12 # Defining "shortcuts" for building
13
14 all : filterman
15
16 filterman : $(IDL) $(CLASS)
17
18 clean :
19 rm -f $(CLASS)
20
21 update :
22 cvs -q -d /usr/local/proj/co600_10/cvs update -d
23
24 # Dependencies, and building
25
26 # clever catchall to build any .class file from a .java file
27 %.class : %.java
28 javac $<
29
30 $(IDL) : ../../../../../idl/iscream.idl
31 $(IDLMAKE)