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.2
Committed: Thu Nov 30 02:31:21 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.1: +6 -5 lines
Log Message:
Changed it to the util Makefile, which includes both the XML stuff and the
ReferenceManager.

File Contents

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