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/loggers/Makefile
Revision: 1.1
Committed: Wed Nov 29 23:41:48 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Log Message:
Makefile for the core loggers.

File Contents

# Content
1 # Makefile for uk.ac.ukc.iscream.core.loggers
2 # $Id: Makefile,v 1.1 2000/11/27 22:07:19 tdb1 Exp $
3
4 # Defining Filenames
5
6 CLASS = FileLogger.class MultiLogger.class ScreenLogger.class\
7 SimpleGUILogger.class SimpleSwingLogger.class
8
9 IDL = ../../../../../../idl/.madeidl
10 IDLFILES = ../../../../../../idl/uk
11 IDLMAKE = cd ../../../../../.. && $(MAKE) idl
12
13 # Defining "shortcuts" for building
14
15 all : loggers
16
17 loggers : $(IDL) $(CLASS)
18
19 clean :
20 rm -f $(CLASS)
21
22 distclean : clean
23 rm -Rf $(IDLFILES)
24 rm -f $(IDL)
25
26 update :
27 cvs -q -d /usr/local/proj/co600_10/cvs update -d
28
29 # Dependencies, and building
30
31 # clever catchall to build any .class file from a .java file
32 %.class : %.java
33 javac $<
34
35 $(IDL) : ../../../../../../idl/iscream.idl
36 $(IDLMAKE)