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.3 by tdb, Tue Nov 14 01:53:51 2000 UTC vs.
Revision 1.12.2.2 by tdb, Mon Dec 11 23:47:58 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
4 > include ../../../../../Config.inc
5  
6
6   # Defining Filenames
7  
8 < CORE = Core.class ConfiguratorServant.class ConfigurationServant.class\
9 <           ScreenLoggerServant.class FileLoggerServant.class
8 > CLASS = CircularIncludeException.class ConfigurationManagerServant.class\
9 >        ConfigurationServant.class Core.class\
10 >        LoggerImpl.class LoggerServant.class
11  
12 SAMPLE = SampleConfigObtainer.class
13
14 PACKAGE = Core.jar
15
16
12   # Defining "shortcuts" for building
13  
14 < core : $(CORE)
20 < sample : $(SAMPLE)
21 < all : core sample
22 < package : $(PACKAGE)
14 > all : core loggers
15  
16 < clean :
25 <        rm -f $(CORE) $(SAMPLE) $(PACKAGE)
16 > core : $(IDL) $(CLASS)
17  
18 < run : $(CORE)
19 <        java Core
18 > loggers : mkloggers
19 > mkloggers :
20 >        cd loggers && $(MAKE) all
21  
22 <
31 < # Dependencies, and building
32 <
33 < #clever catchall to build any .class file from a .java file
34 < %.class : %.java
35 <        javac $<
36 <
37 < $(PACKAGE) : $(CORE)
38 <        echo "Main-Class: Core" > MANIFEST_CORE_TMP
39 <        jar -cmf MANIFEST_CORE_TMP $(PACKAGE) $(CORE)
40 <        rm -f MANIFEST_CORE_TMP
41 <        @echo "----------------------------"
42 <        @echo "to run: java -jar $(PACKAGE)"
43 <        @echo "----------------------------"
44 <        @echo "WARNING: Need to sort Classpath"
45 <
46 <
47 < # and the help :)
48 <
49 < help :
50 <        @echo "Makefile usage [default: core]"
51 <        @echo
52 <        @echo "make run     - runs the core programs"
53 <        @echo
54 <        @echo "make core    - builds the core programs"
55 <        @echo "make sample  - builds the sample program"
56 <        @echo "make all     - builds both the core and sample"
57 <        @echo
58 <        @echo "make package - packages the core programs into a JAR"
59 <        @echo
60 <        @echo "make clean   - removes all the compiled files"
61 <        @echo
22 > include $(MKINC)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines