ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/Makefile
Revision: 1.3
Committed: Wed Nov 29 23:39:03 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.2: +26 -13 lines
Log Message:
Makefile for server, now modified with package structure in mind.

File Contents

# Content
1 # Makefile for server
2 # $Id: Makefile,v 1.2 2000/11/16 14:46:53 tdb1 Exp $
3
4 IDL = idl/.madeidl
5
6 all : idl code
7
8 idl : $(IDL)
9 $(IDL) : idl/iscream.idl
10 cd idl && $(MAKE) all
11
12 code :
13 cd uk/ac/ukc/iscream && $(MAKE) all
14
15 clean :
16 cd idl && $(MAKE) clean
17 cd uk/ac/ukc/iscream && $(MAKE) clean
18
19 update :
20 cvs -q -d /usr/local/proj/co600_10/cvs update
21
22 runcore :
23 cd uk/ac/ukc/iscream/core && $(MAKE) all
24 java uk.ac.ukc.iscream.core.Core -l etc/default.properties
25
26 runfiltermanager :
27 cd uk/ac/ukc/iscream/filtermanager && $(MAKE) all
28 java uk.ac.ukc.iscream.filtermanager.FilterManager
29
30 runrootfilter :
31 cd uk/ac/ukc/iscream/rootfilter && $(MAKE) all
32 java uk.ac.ukc.iscream.rootfilter.RootFilterMain $(NAME)
33
34 runfilter :
35 cd uk/ac/ukc/iscream/filter && $(MAKE) all
36 java uk.ac.ukc.iscream.filter.FilterMain $(NAME)