ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/Makefile
Revision: 1.6.2.4
Committed: Tue Dec 12 01:59:34 2000 UTC (23 years, 5 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.6.2.3: +2 -1 lines
Log Message:
Forgot to remove the dependencies on a clean.

File Contents

# Content
1 # Makefile for server
2 # $Id: Makefile,v 1.6.2.3 2000/12/12 01:53:55 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 :
16 cd uk/ac/ukc/iscream && $(MAKE) all
17
18 clean :
19 cd idl && $(MAKE) clean
20 cd build && $(MAKE) clean
21 rm -Rf $(BUILDCHECK) $(IDLCHECK)
22
23 run : build
24 cd build && java -jar iscream.jar
25
26 build :
27 cd build && $(MAKE) package
28
29 include $(MKINC)