ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/client/Makefile
Revision: 1.2
Committed: Tue Feb 27 00:59:13 2001 UTC (23 years, 2 months ago) by tdb
Branch: MAIN
Changes since 1.1: +12 -3 lines
Log Message:
Added new classes, and .monitors package.

File Contents

# Content
1 # Makefile for uk.ac.ukc.iscream.client
2 # $Id: Makefile,v 1.1 2001/02/03 04:51:32 tdb1 Exp $
3
4 # Config Include
5 include ../../../../../Config.inc
6
7 # Defining Filenames (these will all be built)
8
9 JAVA = ClientServant.java ClientMain.java Monitor.java\
10 MonitorManager.java
11
12 # Build Rule
13 all : client monitors
14
15 client : DOBUILD
16
17 monitors : mkmonitors
18 mkmonitors :
19 cd monitors && $(MAKE) all
20
21 clean : DOCLEAN
22 cd monitors && $(MAKE) clean
23
24 # Main Include
25 include $(MKINC)