ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/idl/Makefile
Revision: 1.10
Committed: Tue Jul 17 17:07:55 2001 UTC (23 years, 2 months ago) by tdb
Branch: MAIN
Branch point for: SERVER_PIRCBOT
Changes since 1.9: +2 -2 lines
Log Message:
Forgot to change the old-style build setup at some point.
Corrected links to downloads of JAR files.
Fixed the IDL compiler sloppy names...

File Contents

# User Rev Content
1 tdb 1.1 # Makefile for idl
2 tdb 1.10 # $Id: Makefile,v 1.9 2001/05/29 17:02:34 tdb1 Exp $
3 tdb 1.2
4     include ../Config.inc
5 tdb 1.1
6     IDLFILES = uk
7    
8 tdb 1.2 all : build
9 tdb 1.1
10 tdb 1.2 idl : $(IDLCHECK)
11 tdb 1.1
12 tdb 1.2 $(IDLCHECK) : iscream.idl
13 tdb 1.10 java -classpath $(BUILD)/lib/idl.jar org.jacorb.idl.parser -sloppy_names iscream.idl
14 tdb 1.2 @touch $(IDLCHECK)
15    
16     build : $(BUILDCHECK)
17    
18     $(BUILDCHECK) : $(IDLCHECK) iscream.idl
19 tdb 1.9 cd uk/org/iscream/cms/server/clientinterface && javac $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) *.java
20     cd uk/org/iscream/cms/server/core && javac $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) *.java
21     cd uk/org/iscream/cms/server/filter && javac $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) *.java
22     cd uk/org/iscream/cms/server/client && javac $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) *.java
23     cd $(SOURCEROOT)/uk/org/iscream/cms/server && $(MAKE) clean
24 tdb 1.2 @touch $(BUILDCHECK)
25 tdb 1.1
26     clean :
27     rm -Rf $(IDLFILES)
28 tdb 1.2 rm -f $(IDLCHECK)
29     rm -f $(BUILDCHECK)
30 tdb 1.1
31 tdb 1.2 #include $(MKINC)