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.12
Committed: Tue May 1 19:25:14 2001 UTC (23 years ago) by ajm
Branch: MAIN
Changes since 1.11: +2 -2 lines
Log Message:
Added a new class to be a W-rapper (aye!) which holds the Process object that holds the tunnel process.  This allows the connection handler to simply pass round a reference to this object, where as before I wrongly assumed how java's reference passing worked.

All fine now.  The processes get cleaned up when the user drops the connection.  No stray cmd processes are left about for the user to close manually, and probably closes a possible security problem too...

File Contents

# Content
1 # Makefile for uk.ac.ukc.iscream.conient
2 # $Id: Makefile,v 1.11 2001/03/19 01:38:16 ajm4 Exp $
3
4 # Config Include
5 include ../../../../Config.inc
6
7 # Defining Filenames (these will all be built)
8
9 JAVA = Configuration.java ConnectionHandler.java ControlPanel.java\
10 Conient.java DataPanel.java DataReader.java HostDisplayPanel.java\
11 PacketTimer.java SwingSafeAdd.java QueueFrame.java\
12 ConfigurationDialog.java SwingSafeAddCard.java TunnelProcess.java
13
14 # Build Rules
15 all : datacomponents conient
16
17 conient : DOBUILD
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)