ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/Makefile
Revision: 1.6.2.5
Committed: Tue Dec 12 02:45:54 2000 UTC (23 years, 5 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.6.2.4: +4 -3 lines
Log Message:
Done some more tidying on all the Makefiles. This should have solve the current
dependency problem that seemed to be occuring with the java source files. The
only dependency that's now not quite in place is the IDL stuff. This should be
easily fixable.

File Contents

# User Rev Content
1 tdb 1.1 # Makefile for server
2 tdb 1.6.2.5 # $Id: Makefile,v 1.6.2.4 2000/12/12 01:59:34 tdb1 Exp $
3 tdb 1.1
4 tdb 1.6.2.2 include Config.inc
5 tdb 1.1
6 tdb 1.6.2.3 all : buildidl code build
7 tdb 1.1
8 tdb 1.3 idl : $(IDL)
9     $(IDL) : idl/iscream.idl
10 tdb 1.6.2.1 cd idl && $(MAKE) idl
11    
12     buildidl : $(IDL) idl
13 tdb 1.6.2.2 cd idl && $(MAKE) build
14 tdb 1.1
15 tdb 1.6.2.5 code : buildidl
16 tdb 1.3 cd uk/ac/ukc/iscream && $(MAKE) all
17 tdb 1.1
18     clean :
19 tdb 1.3 cd idl && $(MAKE) clean
20 tdb 1.6.2.1 cd build && $(MAKE) clean
21 tdb 1.6.2.5 cd uk/ac/ukc/iscream && $(MAKE) clean
22 tdb 1.6.2.4 rm -Rf $(BUILDCHECK) $(IDLCHECK)
23 tdb 1.1
24 tdb 1.6.2.2 run : build
25     cd build && java -jar iscream.jar
26 tdb 1.6.2.1
27 tdb 1.6.2.5 build : code
28 tdb 1.6.2.1 cd build && $(MAKE) package
29 tdb 1.6.2.2
30     include $(MKINC)