ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/Makefile.inc
Revision: 1.5
Committed: Mon Jan 29 00:30:37 2001 UTC (23 years, 4 months ago) by tdb
Branch: MAIN
Changes since 1.4: +2 -1 lines
Log Message:
Forgot to clean up the dependency file for DOCOPY.

File Contents

# Content
1 # Include Makefile for the server
2 # $Id: Makefile.inc,v 1.4 2001/01/28 23:54:57 tdb1 Exp $
3
4 ## Rule to CVS update the files
5 update :
6 cvs -q -d $(CVSROOT) update
7
8 ## 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
13 ## General Build Rule for Java Files
14 DOBUILD : $(IDLCHECK) $(COMPILECHECK)
15
16 $(COMPILECHECK) : $(JAVA)
17 javac -g:none -O -classpath $(JCCLASSPATH) -d $(BUILD) $?
18 @touch $(BUILDCHECK)
19 @touch $(COMPILECHECK)
20
21 DOCLEAN :
22 rm -f $(COMPILECHECK)
23 rm -f $(COPYCHECK)
24
25 DOCOPY : $(COPYCHECK)
26
27 $(COPYCHECK) : $(FILES)
28 cp $(FILES) `perl -e '$$root="$(SERVERROOT)";$$path=\`pwd\`;$$path=~s/^$$root($$1)/$$1/;print "$(BUILD)".$$path;'`
29 @touch $(COPYCHECK)