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.2
Committed: Mon Dec 11 23:57:06 2000 UTC (23 years, 5 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.1.2.1: +5 -1 lines
Log Message:
Just added some explanatory comments.

File Contents

# Content
1 # Include Makefile for the server
2 # $Id: Makefile.inc,v 1.1.2.1 2000/12/11 23:42:52 tdb1 Exp $
3
4 ## Rule to CVS update the files
5 update :
6 cvs -q -d $(CVSROOT) update
7
8 ## General rule for building a class file
9 %.class : %.java
10 javac -g:none -O -d $(BUILD) $<
11
12 ## How to generate the IDL files
13 IDLMAKE = cd $(SERVERROOT) && $(MAKE) buildidl
14
15 ## Rule for making the IDL files
16 $(IDL) : $(SERVERROOT)/idl/iscream.idl
17 $(IDLMAKE)