ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/util/Makefile.inc
Revision: 1.1
Committed: Wed Feb 5 14:27:58 2003 UTC (21 years, 3 months ago) by tdb
Branch: MAIN
CVS Tags: HEAD
Log Message:
Util package has been pulled out of the server. Next step will be to modify
the server and conient (and anything else?) to use this instead. New
package name is uk.org.iscream.cms.util. All the java files were moved with
a repo copy, so they retain their history.

File Contents

# User Rev Content
1 tdb 1.1 # Include Makefile for the util package
2     # $Id$
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