ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/idl/Makefile
Revision: 1.9
Committed: Tue May 29 17:02:34 2001 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.8: +6 -6 lines
Log Message:
Major change in the java package naming. This has been held off for some time
now, but it really needed doing. The future packaging of all i-scream products
will be;

uk.org.iscream.<product>.<subpart>.*

In the case of the central monitoring system server this will be;

uk.org.iscream.cms.server.*

The whole server has been changed to follow this structure, and tested to a
smallish extent. Further changes in other parts of the CMS will follow.

File Contents

# Content
1 # Makefile for idl
2 # $Id: Makefile,v 1.8 2001/05/12 00:14:15 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 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)