ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/util/uk/org/iscream/cms/util/Makefile
Revision: 1.1
Committed: Thu Nov 30 01:06:08 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Log Message:
Added the makefile for the Reference Manager.

File Contents

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