ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/filter/plugins/Makefile
Revision: 1.8
Committed: Wed Mar 7 23:19:16 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.7: +3 -2 lines
Log Message:
Made an abstract skeleton class for the service checks. They all do very similar
things, so it seemed worth putting all the behaviour in one place. This also has
another advantage, namely that service checks are now much quicker to produce,
and that in the future the checks could even be moved to a general checker that
reads from the configuration.

File Contents

# User Rev Content
1 tdb 1.1 # Makefile for uk.ac.ukc.iscream.filter
2 tdb 1.8 # $Id: Makefile,v 1.7 2001/03/07 13:04:44 tdb1 Exp $
3 tdb 1.1
4 tdb 1.2 # Config Include
5     include ../../../../../../Config.inc
6 tdb 1.1
7 tdb 1.2 # Defining Filenames (these will be built)
8 tdb 1.1
9 tdb 1.6 JAVA = EnforceEssentialData__Plugin.java TypeChecker__Plugin.java\
10 tdb 1.7 HTTP__ServiceCheck.java SMTP__ServiceCheck.java\
11     POP3__ServiceCheck.java IMAP__ServiceCheck.java\
12 tdb 1.8 FTP__ServiceCheck.java SSH__ServiceCheck.java\
13     Telnet__ServiceCheck.java
14 tdb 1.1
15 tdb 1.2 # Build Rule
16     all : DOBUILD
17     clean : DOCLEAN
18 tdb 1.1
19 tdb 1.2 # Main Include
20     include $(MKINC)