ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/Makefile
Revision: 1.6.2.6
Committed: Tue Dec 12 12:36:04 2000 UTC (23 years, 5 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.6.2.5: +10 -11 lines
Log Message:
Just moved things around a little bit.

File Contents

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