ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/clientinterface/Makefile
Revision: 1.2
Committed: Wed Dec 6 18:33:48 2000 UTC (23 years, 5 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.clientinterface
2 tdb 1.2 # $Id: Makefile,v 1.1 2000/12/04 18:16:04 tdb1 Exp $
3 tdb 1.1
4     # Defining Filenames
5    
6     CLASS = ClientHandler.class ClientListener.class TCPClientHandler.class\
7     ClientInterfaceMain.class ClientInterfaceServant.class
8    
9     IDL = ../../../../../idl/.madeidl
10     IDLFILES = ../../../../../idl/uk
11     IDLMAKE = cd ../../../../.. && $(MAKE) idl
12    
13     # Defining "shortcuts" for building
14    
15 tdb 1.2 all : $(IDL) $(CLASS)
16 tdb 1.1
17     clean :
18     rm -f $(CLASS)
19    
20     update :
21     cvs -q -d /usr/local/proj/co600_10/cvs update -d
22    
23     # Dependencies, and building
24    
25     # clever catchall to build any .class file from a .java file
26     %.class : %.java
27     javac $<
28    
29     $(IDL) : ../../../../../idl/iscream.idl
30     $(IDLMAKE)