ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/conient/Makefile.inc
Revision: 1.6
Committed: Thu Mar 1 17:18:18 2001 UTC (23 years, 6 months ago) by tdb
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Changes since 1.5: +2 -2 lines
Log Message:
The Java compiler flags are now configured.

File Contents

# User Rev Content
1 tdb 1.1 # Include Makefile for conient
2 tdb 1.6 # $Id: Makefile.inc,v 1.5 2001/02/28 11:49:47 tdb1 Exp $
3 tdb 1.1
4     ## Rule to CVS update the files
5     update :
6 tdb 1.5 $(CVS) -q -d $(CVSROOT) update
7 tdb 1.1
8     ## General Build Rule for Java Files
9     DOBUILD : $(COMPILECHECK)
10    
11     $(COMPILECHECK) : $(JAVA)
12 tdb 1.6 javac $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) $?
13 tdb 1.1 @touch $(BUILDCHECK)
14     @touch $(COMPILECHECK)
15    
16     DOCLEAN :
17 tdb 1.4 rm -f $(COMPILECHECK) $(COPYCHECK)
18 tdb 1.1
19 tdb 1.2 DOCOPY : $(COPYCHECK)
20    
21 tdb 1.3 $(COPYCHECK) : $(FILES)
22 tdb 1.1 cp $(FILES) `perl -e '$$root="$(SOURCEROOT)";$$path=\`pwd\`;$$path=~s/^$$root($$1)/$$1/;print "$(BUILD)".$$path;'`
23 tdb 1.2 @touch $(COPYCHECK)