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.2
Committed: Wed Dec 6 18:33:59 2000 UTC (23 years, 6 months ago) by tdb
Branch: MAIN
Branch point for: SERVER_PACKAGEBUILD
Changes since 1.1: +2 -4 lines
Log Message:
Tried to standardise the format of the Makefiles.

File Contents

# User Rev Content
1 tdb 1.1 # Makefile for uk.ac.ukc.iscream.filtermanager
2 tdb 1.2 # $Id: Makefile,v 1.1 2000/11/29 23:42:40 tdb1 Exp $
3 tdb 1.1
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 tdb 1.2 all : $(IDL) $(CLASS)
15 tdb 1.1
16     clean :
17     rm -f $(CLASS)
18    
19     update :
20     cvs -q -d /usr/local/proj/co600_10/cvs update -d
21    
22     # Dependencies, and building
23    
24     # clever catchall to build any .class file from a .java file
25     %.class : %.java
26     javac $<
27    
28     $(IDL) : ../../../../../idl/iscream.idl
29     $(IDLMAKE)