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 (22 years, 10 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

# Content
1 # Makefile for idl
2 # $Id: Makefile,v 1.9 2001/05/29 17:02:34 tdb1 Exp $
3
4 include ../Config.inc
5
6 IDLFILES = uk
7
8 all : build
9
10 idl : $(IDLCHECK)
11
12 $(IDLCHECK) : iscream.idl
13 java -classpath $(BUILD)/lib/idl.jar org.jacorb.idl.parser -sloppy_names iscream.idl
14 @touch $(IDLCHECK)
15
16 build : $(BUILDCHECK)
17
18 $(BUILDCHECK) : $(IDLCHECK) iscream.idl
19 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 @touch $(BUILDCHECK)
25
26 clean :
27 rm -Rf $(IDLFILES)
28 rm -f $(IDLCHECK)
29 rm -f $(BUILDCHECK)
30
31 #include $(MKINC)