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.4
Committed: Tue Dec 12 02:45:54 2000 UTC (23 years, 5 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.1.2.3: +9 -6 lines
Log Message:
Done some more tidying on all the Makefiles. This should have solve the current
dependency problem that seemed to be occuring with the java source files. The
only dependency that's now not quite in place is the IDL stuff. This should be
easily fixable.

File Contents

# User Rev Content
1 tdb 1.1.2.1 # Include Makefile for the server
2 tdb 1.1.2.4 # $Id: Makefile.inc,v 1.1.2.3 2000/12/12 01:53:55 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.2 ## How to generate the IDL files
9 tdb 1.1.2.1 IDLMAKE = cd $(SERVERROOT) && $(MAKE) buildidl
10    
11 tdb 1.1.2.2 ## Rule for making the IDL files
12 tdb 1.1.2.1 $(IDL) : $(SERVERROOT)/idl/iscream.idl
13     $(IDLMAKE)
14 tdb 1.1.2.3
15     ## General Build Rule for Java Files
16 tdb 1.1.2.4 DOBUILD : $(COMPILECHECK) $(IDL)
17    
18     $(COMPILECHECK) : $(JAVA)
19     javac -g:none -O -classpath $(JCCLASSPATH) -d $(BUILD) $?
20 tdb 1.1.2.3 @touch $(BUILDCHECK)
21 tdb 1.1.2.4 @touch $(COMPILECHECK)
22    
23     DOCLEAN :
24     rm -f $(COMPILECHECK)