ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/Makefile.inc
Revision: 1.1.2.5
Committed: Tue Dec 12 12:36:59 2000 UTC (23 years, 5 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.1.2.4: +6 -8 lines
Log Message:
Sorted out the IDL dependencies.

File Contents

# User Rev Content
1 tdb 1.1.2.1 # Include Makefile for the server
2 tdb 1.1.2.5 # $Id: Makefile.inc,v 1.1.2.4 2000/12/12 02:45:54 tdb1 Exp $
3 tdb 1.1.2.1
4 tdb 1.1.2.2 ## Rule to CVS update the files
5 tdb 1.1.2.1 update :
6     cvs -q -d $(CVSROOT) update
7    
8 tdb 1.1.2.5 ## Rule for making and compiling the IDL files
9     $(IDLCHECK) : $(SERVERROOT)/idl/iscream.idl
10     cd $(SERVERROOT)/idl && $(MAKE) build
11     rm -f $(COMPILECHECK)
12 tdb 1.1.2.3
13     ## General Build Rule for Java Files
14 tdb 1.1.2.5 DOBUILD : $(IDLCHECK) $(COMPILECHECK)
15 tdb 1.1.2.4
16     $(COMPILECHECK) : $(JAVA)
17     javac -g:none -O -classpath $(JCCLASSPATH) -d $(BUILD) $?
18 tdb 1.1.2.3 @touch $(BUILDCHECK)
19 tdb 1.1.2.4 @touch $(COMPILECHECK)
20    
21     DOCLEAN :
22     rm -f $(COMPILECHECK)