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
(Generate patch)

Comparing projects/cms/source/server/uk/org/iscream/cms/server/core/Makefile (file contents):
Revision 1.2 by tdb, Tue Nov 14 01:28:21 2000 UTC vs.
Revision 1.12 by tdb, Wed Nov 29 23:40:55 2000 UTC

# Line 1 | Line 1
1 < # Makefile for CORE
1 > # Makefile for uk.ac.ukc.iscream.core
2   # $Id$
3  
4 # For help type: make help
5
6
4   # Defining Filenames
5  
6 < CORE = Core.class ConfiguratorServant.class ConfigurationServant.class\
7 <           ScreenLoggerServant.class FileLoggerServant.class
6 > CLASS = CircularIncludeException.class ConfigurationManagerServant.class\
7 >        ConfigurationServant.class Core.class\
8 >        LoggerImpl.class LoggerServant.class
9  
10 < SAMPLE = SampleConfigObtainer.class
10 > IDL = ../../../../../idl/.madeidl
11 > IDLFILES = ../../../../../idl/uk
12 > IDLMAKE = cd ../../../../.. && $(MAKE) idl
13  
14 < PACKAGE = Core.jar
14 > # Defining "shortcuts" for building
15  
16 + all : core loggers
17  
18 < # Defining "shortcuts" for building
18 > core : $(IDL) $(CLASS)
19  
20 < core : $(CORE)
21 < sample : $(SAMPLE)
22 < all : core sample
22 < package : $(PACKAGE)
20 > loggers : mkloggers
21 > mkloggers :
22 >        cd loggers && $(MAKE) all
23  
24   clean :
25 <        rm -f $(CORE) $(SAMPLE) $(PACKAGE)
25 >        rm -f $(CLASS)
26 >        cd loggers && $(MAKE) clean
27  
28 < run : $(CORE)
29 <        java Core
28 > update :
29 >        cvs -q -d /usr/local/proj/co600_10/cvs update -d
30  
30
31   # Dependencies, and building
32  
33 < Core.class : Core.java
34 <        javac Core.java
33 > # clever catchall to build any .class file from a .java file
34 > %.class : %.java
35 >        javac $<
36  
37 < ConfiguratorServant.class : ConfiguratorServant.java
38 <        javac ConfiguratorServant.java
38 <
39 < ConfigurationServant.class : ConfigurationServant.java
40 <        javac ConfiguratorServant.java
41 <
42 < ScreenLogger.class : ScreenLogger.java
43 <        javac ScreenLogger.java
44 <
45 < FileLogger.class : FileLogger.java
46 <        javac FileLogger.java
47 <
48 < SampleConfigObtainer.class : SampleConfigObtainer.java
49 <        javac SampleConfigObtainer.java
50 <
51 < $(PACKAGE) : $(CORE)
52 <        echo "Main-Class: Core" > MANIFEST_CORE_TMP
53 <        jar -cmf MANIFEST_CORE_TMP $(PACKAGE) $(CORE)
54 <        rm -f MANIFEST_CORE_TMP
55 <        @echo "----------------------------"
56 <        @echo "to run: java -jar $(PACKAGE)"
57 <        @echo "----------------------------"
58 <        @echo "WARNING: Need to sort Classpath"
59 <
60 <
61 < # and the help :)
62 <
63 < help :
64 <        @echo "Makefile usage [default: core]"
65 <        @echo
66 <        @echo "make run     - runs the core programs"
67 <        @echo
68 <        @echo "make core    - builds the core programs"
69 <        @echo "make sample  - builds the sample program"
70 <        @echo "make all     - builds both the core and sample"
71 <        @echo
72 <        @echo "make package - packages the core programs into a JAR"
73 <        @echo
74 <        @echo "make clean   - removes all the compiled files"
75 <        @echo
37 > $(IDL) : ../../../../../idl/iscream.idl
38 >        $(IDLMAKE)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines