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.4
Committed: Tue Dec 12 02:46:00 2000 UTC (23 years, 6 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.12.2.3: +7 -4 lines
Log Message:
Done some more tidying on all the Makefiles. This should have solve the current
dependency problem that seemed to be occuring with the java source files. The
only dependency that's now not quite in place is the IDL stuff. This should be
easily fixable.

File Contents

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