ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/conient/Makefile.inc
Revision: 1.3
Committed: Sun Jan 28 23:47:27 2001 UTC (23 years, 4 months ago) by tdb
Branch: MAIN
Changes since 1.2: +2 -2 lines
Log Message:
The last commit didn't check for the FILES actually changing !

File Contents

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