ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/DBReporter/Makefile.inc
Revision: 1.2
Committed: Tue May 29 22:30:56 2001 UTC (24 years, 6 months ago) by tdb
Branch: MAIN
Changes since 1.1: +2 -2 lines
Log Message:
Whilst all the packages are being changed around cms, it was time this little
beast of a program got shoved into one. It has all been placed under this java
package:

uk.org.iscream.cms.dbreporter.*

This has required a few changes to the Makefile setup, and a few moves of other
files to bring the structure into line with all the other i-scream central
monitoring system packages.

File Contents

# Content
1 # Include Makefile for dbreporter
2 # $Id: Makefile.inc,v 1.1 2001/03/26 20:50:06 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 $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) $?
13 @touch $(BUILDCHECK)
14 @touch $(COMPILECHECK)
15
16 DOCLEAN :
17 rm -f $(COMPILECHECK) $(COPYCHECK)
18
19 DOCOPY : $(COPYCHECK)
20
21 $(COPYCHECK) : $(FILES)
22 cp $(FILES) `perl -e '$$root="$(SOURCEROOT)";$$path=\`pwd\`;$$path=~s/^$$root($$1)/$$1/;print "$(BUILD)".$$path;'`
23 @touch $(COPYCHECK)