1 |
|
# Makefile for idl |
2 |
|
# $Id$ |
3 |
|
|
4 |
< |
IDL = .madeidl |
4 |
> |
include ../Config.inc |
5 |
> |
|
6 |
|
IDLFILES = uk |
7 |
|
|
8 |
< |
all : idl |
8 |
> |
.PHONY : all |
9 |
> |
all : build |
10 |
|
|
11 |
< |
idl : $(IDL) |
11 |
> |
.PHONY : idl |
12 |
> |
idl : iscream.idl |
13 |
> |
java -classpath $(BUILD)/lib/idl.jar org.jacorb.idl.parser -sloppy_names iscream.idl |
14 |
|
|
15 |
< |
$(IDL) : iscream.idl |
16 |
< |
idl iscream.idl |
17 |
< |
@touch .madeidl |
15 |
> |
.PHONY : build |
16 |
> |
build : idl |
17 |
> |
cd uk/org/iscream/cms/server/clientinterface && javac $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) *.java |
18 |
> |
cd uk/org/iscream/cms/server/core && javac $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) *.java |
19 |
> |
cd uk/org/iscream/cms/server/filter && javac $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) *.java |
20 |
> |
@touch $(IDLCHECK) |
21 |
> |
@rm -f $(MCOMPILECHECK) |
22 |
|
|
23 |
+ |
.PHONY : clean |
24 |
|
clean : |
25 |
|
rm -Rf $(IDLFILES) |
26 |
< |
rm -f $(IDL) |
26 |
> |
rm -f $(IDLCHECK) |
27 |
|
|
28 |
< |
update : |
20 |
< |
cvs -q -d /usr/local/proj/co600_10/cvs update |
28 |
> |
include $(MKINC) |