ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/DBReporter/Makefile.inc
Revision: 1.4
Committed: Fri Mar 28 16:30:38 2003 UTC (21 years, 8 months ago) by tdb
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +1 -1 lines
State: FILE REMOVED
Error occurred while calculating annotation data.
Log Message:
Removed some un-used code from CVS. We can always resurrect this later if
someone feels they want to work on it. Gone are the old perl ihost which
isn't needed now, winhost which is broken and shows no sign of being fixed,
and DBReporter. If someone wants to revive them, I'll undelete them :-)

File Contents

# Content
1 # Include Makefile for the dbreporter
2 # $Id: Makefile.inc,v 1.3 2003/02/06 11:41:43 tdb Exp $
3
4 ## Rule to CVS update the files
5 .PHONY : update
6 update :
7 $(CVS) -q -d $(CVSROOT) update
8
9 ## General Build Rule for Java Files
10 .PHONY : DOBUILD
11 DOBUILD : $(COMPILECHECK)
12
13 $(COMPILECHECK) : $(JAVA)
14 $(JAVACBIN) $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) $(JAVA)
15 @touch $(COMPILECHECK)
16 @touch $(MCOMPILECHECK)
17
18 .PHONY : DOCOPY
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)
24
25 .PHONY : DOCLEAN
26 DOCLEAN :
27 rm -f $(COMPILECHECK) $(COPYCHECK)
28
29 $(MCOMPILECHECK) :
30 cd $(SOURCEROOT) && $(MAKE) build
31
32 $(SRCCHECK) :
33 cd $(SOURCEROOT) && $(MAKE) mksrc
34
35 $(CHANGELOG) :
36 cd $(SOURCEROOT) && $(MAKE) mkchangelog
37
38 $(JAVADOCCHECK) :
39 cd $(SOURCEROOT) && $(MAKE) mkjavadoc