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.3
Committed: Mon Dec 11 23:46:24 2000 UTC (23 years, 5 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.1.2.2: +13 -10 lines
Log Message:
Moved the compiling of the IDL generated source into here, and made use of the
include files.

File Contents

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