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, 9 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

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