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.3
Committed: Tue Dec 12 01:53:55 2000 UTC (23 years, 5 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.1.2.2: +6 -2 lines
Log Message:
Attempted to improve the dependencies, and tidied up the code Makefiles a bit
better. Getting there... slowly.

File Contents

# User Rev Content
1 tdb 1.1.2.1 # Include Makefile for the server
2 tdb 1.1.2.3 # $Id: Makefile.inc,v 1.1.2.2 2000/12/11 23:57:06 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 ## General rule for building a class file
9 tdb 1.1.2.1 %.class : %.java
10 tdb 1.1.2.3 javac -g:none -O -classpath $(JCCLASSPATH) -d $(BUILD) $<
11 tdb 1.1.2.1
12 tdb 1.1.2.2 ## How to generate the IDL files
13 tdb 1.1.2.1 IDLMAKE = cd $(SERVERROOT) && $(MAKE) buildidl
14    
15 tdb 1.1.2.2 ## Rule for making the IDL files
16 tdb 1.1.2.1 $(IDL) : $(SERVERROOT)/idl/iscream.idl
17     $(IDLMAKE)
18 tdb 1.1.2.3
19     ## General Build Rule for Java Files
20     DOBUILD : $(IDL) $(CLASS)
21     @touch $(BUILDCHECK)