ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/idl/Makefile
Revision: 1.1.2.4
Committed: Tue Dec 12 02:45:56 2000 UTC (23 years, 9 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.1.2.3: +3 -1 lines
Log Message:
Done some more tidying on all the Makefiles. This should have solve the current
dependency problem that seemed to be occuring with the java source files. The
only dependency that's now not quite in place is the IDL stuff. This should be
easily fixable.

File Contents

# User Rev Content
1 tdb 1.1 # Makefile for idl
2 tdb 1.1.2.4 # $Id: Makefile,v 1.1.2.3 2000/12/11 23:46:24 tdb1 Exp $
3 tdb 1.1
4 tdb 1.1.2.3 include ../Config.inc
5 tdb 1.1.2.4
6     all : build
7 tdb 1.1
8 tdb 1.1.2.3 idl : $(IDLCHECK)
9 tdb 1.1
10 tdb 1.1.2.3 $(IDLCHECK) : iscream.idl
11     java -classpath $(BUILD)/lib/idl.jar jacorb.idl.parser iscream.idl
12     @touch $(IDLCHECK)
13    
14     build : idl
15     cd uk/ac/ukc/iscream/clientinterface && javac -g:none -O -d $(BUILD) *.java
16     cd uk/ac/ukc/iscream/core && javac -g:none -O -d $(BUILD) *.java
17     cd uk/ac/ukc/iscream/filter && javac -g:none -O -d $(BUILD) *.java
18 tdb 1.1
19     clean :
20     rm -Rf $(IDLFILES)
21 tdb 1.1.2.3 rm -f $(IDLCHECK)
22 tdb 1.1
23 tdb 1.1.2.3 include $(MKINC)