ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/experimental/server/CorbaServices/Makefile.inc
Revision: 1.1
Committed: Mon Feb 26 21:32:36 2001 UTC (23 years, 1 month ago) by tdb
Branch: MAIN
CVS Tags: PROJECT_COMPLETION, HEAD
Log Message:
Initial checkin of the build files for the CorbaServices manager.

File Contents

# Content
1 # Include Makefile for corbaservices
2 # $Id$
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) $(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)