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.12.2.2
Committed: Mon Dec 11 23:47:58 2000 UTC (23 years, 5 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.12.2.1: +4 -22 lines
Log Message:
All Makefiles in the made code now make use of includes. This has dramatically
reduced the size and complexity of each file.
Future improvements centre around checking of dependencies better.

File Contents

# User Rev Content
1 tdb 1.12 # Makefile for uk.ac.ukc.iscream.core
2 tdb 1.12.2.2 # $Id: Makefile,v 1.12.2.1 2000/12/11 20:29:20 tdb1 Exp $
3    
4     include ../../../../../Config.inc
5 tdb 1.2
6 tdb 1.1 # Defining Filenames
7    
8 tdb 1.12 CLASS = CircularIncludeException.class ConfigurationManagerServant.class\
9     ConfigurationServant.class Core.class\
10     LoggerImpl.class LoggerServant.class
11    
12 tdb 1.2 # Defining "shortcuts" for building
13 tdb 1.1
14 tdb 1.12 all : core loggers
15 tdb 1.1
16 tdb 1.12 core : $(IDL) $(CLASS)
17 tdb 1.2
18 tdb 1.12 loggers : mkloggers
19     mkloggers :
20     cd loggers && $(MAKE) all
21 tdb 1.4
22 tdb 1.12.2.2 include $(MKINC)