1#**************************************************************
2#
3#  Licensed to the Apache Software Foundation (ASF) under one
4#  or more contributor license agreements.  See the NOTICE file
5#  distributed with this work for additional information
6#  regarding copyright ownership.  The ASF licenses this file
7#  to you under the Apache License, Version 2.0 (the
8#  "License"); you may not use this file except in compliance
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22
23
24PRJ := ..$/..$/..
25PRJNAME := testtools
26TARGET := bridgetest_idl
27
28.INCLUDE: settings.mk
29.INCLUDE: target.mk
30.IF "$(L10N_framework)"==""
31ALLTAR: $(MISC)$/$(TARGET).cppumaker.done $(MISC)$/$(TARGET).javamaker.done
32
33$(MISC)$/$(TARGET).cppumaker.done: $(BIN)$/bridgetest.rdb
34    $(CPPUMAKER) -O$(INCCOM) -BUCR $< -X$(SOLARBINDIR)/types.rdb
35    $(TOUCH) $@
36
37$(MISC)$/$(TARGET).javamaker.done: $(BIN)$/bridgetest.rdb
38    $(JAVAMAKER) -O$(CLASSDIR) -BUCR -nD -X$(SOLARBINDIR)/types.rdb $<
39    $(TOUCH) $@
40
41$(BIN)$/bridgetest.rdb: bridgetest.idl
42    $(IDLC) -O$(MISC)$/$(TARGET) -I$(SOLARIDLDIR) -cid -we $<
43    - $(RM) $@
44    $(REGMERGE) $@ /UCR $(MISC)$/$(TARGET)$/bridgetest.urd
45
46.IF "$(GUI)" == "WNT"
47.IF "$(COM)" != "GCC"
48
49CLIMAKERFLAGS =
50.IF "$(debug)" != ""
51CLIMAKERFLAGS += --verbose
52.ENDIF
53
54ALLTAR: $(MISC)$/$(TARGET).cppumaker.done \
55	$(MISC)$/$(TARGET).javamaker.done \
56	$(BIN)$/cli_types_bridgetest.dll
57
58$(BIN)$/cli_types_bridgetest.dll: $(BIN)$/bridgetest.rdb
59    $(CLIMAKER) $(CLIMAKERFLAGS) --out $@ -r $(SOLARBINDIR)$/cli_uretypes.dll \
60		-X $(SOLARBINDIR)$/types.rdb $<
61    $(TOUCH) $@
62
63.ENDIF
64.ENDIF # GUI, WNT
65.ENDIF # L10N_framework
66
67