ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/filter/Makefile
Revision: 1.12
Committed: Wed Dec 6 18:33:57 2000 UTC (23 years, 6 months ago) by tdb
Branch: MAIN
Changes since 1.11: +2 -4 lines
Log Message:
Tried to standardise the format of the Makefiles.

File Contents

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