ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/Makefile.inc
Revision: 1.11
Committed: Wed Mar 14 22:01:08 2001 UTC (23 years, 2 months ago) by tdb
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Branch point for: SERVER_PIRCBOT
Changes since 1.10: +4 -4 lines
Log Message:
Tidied up the configure script, and got round to make a subtle change to the
Makefile's so they are a bit more "standard".

File Contents

# Content
1 # Include Makefile for the server
2 # $Id: Makefile.inc,v 1.10 2001/03/10 04:00:13 tdb1 Exp $
3
4 ## Rule to CVS update the files
5 update :
6 $(CVS) -q -d $(CVSROOT) update
7
8 ## Rule for making and compiling the IDL files
9 $(IDLCHECK) : $(SOURCEROOT)/idl/iscream.idl
10 cd $(SOURCEROOT)/idl && $(MAKE) build
11 rm -f $(COMPILECHECK)
12
13 ## General Build Rule for Java Files
14 DOBUILD : $(IDLCHECK) $(COMPILECHECK)
15
16 $(COMPILECHECK) : $(JAVA)
17 javac $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) $?
18 @touch $(BUILDCHECK)
19 @touch $(COMPILECHECK)
20
21 DOCLEAN :
22 rm -f $(COMPILECHECK) $(COPYCHECK)
23
24 DOCOPY : $(COPYCHECK)
25
26 $(COPYCHECK) : $(FILES)
27 cp $(FILES) `perl -e '$$root="$(SOURCEROOT)";$$path=\`pwd\`;$$path=~s/^$$root($$1)/$$1/;print "$(BUILD)".$$path;'`
28 @touch $(COPYCHECK)