ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/Makefile
Revision: 1.6.2.2
Committed: Mon Dec 11 23:43:50 2000 UTC (23 years, 5 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.6.2.1: +7 -32 lines
Log Message:
Removed lots of redudant stuff and made use of the includes.

File Contents

# Content
1 # Makefile for server
2 # $Id: Makefile,v 1.6.2.1 2000/12/11 20:19:36 tdb1 Exp $
3
4 include Config.inc
5
6 all : buildidl code
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 :
16 cd uk/ac/ukc/iscream && $(MAKE) all
17
18 clean :
19 cd idl && $(MAKE) clean
20 cd build && $(MAKE) clean
21
22 run : build
23 cd build && java -jar iscream.jar
24
25 build : all
26 cd build && $(MAKE) package
27
28 include $(MKINC)