ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/conient/uk/org/iscream/cms/conient/Makefile
Revision: 1.1
Committed: Wed Jan 24 03:03:16 2001 UTC (23 years, 4 months ago) by tdb
Branch: MAIN
Log Message:
Initial checkin of the Makefile/build system. It is currently untested as the
final code has not be checked in, but I'm quite confident it will work.

File Contents

# User Rev Content
1 tdb 1.1 # Makefile for uk.ac.ukc.iscream.conient
2     # $Id: Makefile,v 1.13 2000/12/13 18:34:24 tdb1 Exp $
3    
4     # Config Include
5     include ../../../../../Config.inc
6    
7     # Defining Filenames (these will all be built)
8    
9     JAVA = ConnectionHandler.java ControlPanel.java DataPanel.java\
10     DataReader.java HostDisplayPanel.java SwingClient.java
11    
12     FILES = i-scream.gif server.gif
13    
14     # Build Rules
15     all : conient datacomponents
16    
17     conient : DOBUILD DOCOPY
18    
19     datacomponents : mkdatacomponents
20     mkdatacomponents :
21     cd datacomponents && $(MAKE) all
22    
23     clean : DOCLEAN
24     cd datacomponents && $(MAKE) clean
25    
26     # Main Include
27     include $(MKINC)