ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/core/Makefile
Revision: 1.15
Committed: Tue May 29 17:02:34 2001 UTC (23 years ago) by tdb
Branch: MAIN
CVS Tags: HEAD
Branch point for: SERVER_PIRCBOT
Changes since 1.14: +3 -3 lines
Log Message:
Major change in the java package naming. This has been held off for some time
now, but it really needed doing. The future packaging of all i-scream products
will be;

uk.org.iscream.<product>.<subpart>.*

In the case of the central monitoring system server this will be;

uk.org.iscream.cms.server.*

The whole server has been changed to follow this structure, and tested to a
smallish extent. Further changes in other parts of the CMS will follow.

File Contents

# User Rev Content
1 tdb 1.15 # Makefile for uk.org.iscream.cms.server.core
2     # $Id: Makefile,v 1.14 2001/03/14 23:25:29 tdb1 Exp $
3 tdb 1.2
4 tdb 1.13 # Config Include
5 tdb 1.15 include ../../../../../../Config.inc
6 tdb 1.1
7 tdb 1.13 # Defining Filenames (these will all be built)
8 tdb 1.12
9 tdb 1.13 JAVA = CircularIncludeException.java ConfigurationManagerServant.java\
10     ConfigurationServant.java Core.java\
11     LoggerImpl.java LoggerServant.java
12 tdb 1.1
13 tdb 1.13 # Build Rules
14 tdb 1.12 all : core loggers
15 tdb 1.1
16 tdb 1.13 core : DOBUILD
17 tdb 1.2
18 tdb 1.12 loggers : mkloggers
19     mkloggers :
20     cd loggers && $(MAKE) all
21 tdb 1.4
22 tdb 1.13 clean : DOCLEAN
23 tdb 1.12 cd loggers && $(MAKE) clean
24 tdb 1.2
25 tdb 1.13 # Main Include
26     include $(MKINC)