summaryrefslogtreecommitdiff
path: root/cli_ure/unotypes
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2003-05-08 11:41:06 +0000
committerDaniel Boelzle <dbo@openoffice.org>2003-05-08 11:41:06 +0000
commitd1b2853eff6c8f17d6faf07ff49a062627321175 (patch)
treef8450c46d87c68796ad1bbd191c6df70a8ebab1c /cli_ure/unotypes
parenta2a7384e2e428b0ec2bda72ba47f168f377e885a (diff)
#107130#
+ cli_udkapi.dll, cli_offapi.dll -> cli_types.dll + support for deployed type metadata (->pkgchk) + different implementation loading + misc climaker fixes + misc code cleanup
Diffstat (limited to 'cli_ure/unotypes')
-rw-r--r--cli_ure/unotypes/makefile.mk32
1 files changed, 15 insertions, 17 deletions
diff --git a/cli_ure/unotypes/makefile.mk b/cli_ure/unotypes/makefile.mk
index c6996f5b7100..5eb8f8e02b00 100644
--- a/cli_ure/unotypes/makefile.mk
+++ b/cli_ure/unotypes/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.2 $
+# $Revision: 1.3 $
#
-# last change: $Author: dbo $ $Date: 2003-04-25 15:14:34 $
+# last change: $Author: dbo $ $Date: 2003-05-08 12:41:05 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -69,27 +69,25 @@ PRJNAME = cli_ure
# for dummy
TARGET = cli_ure
+CLIMAKERFLAGS =
+.IF "$(debug)" != ""
+CLIMAKERFLAGS += --verbose
+.ENDIF
+
.INCLUDE : settings.mk
.INCLUDE : $(PRJ)$/util$/target.pmk
.INCLUDE : target.mk
ALLTAR : \
- $(CLI_OFFAPI)
-
-$(CLI_UDKAPI) : $(SOLARBINDIR)$/udkapi.rdb $(CLIMAKER)
- +$(CLIMAKER) -O $@ $(CLIMAKER_FLAGS) \
- --version "3.1.0.0" \
- --product "OpenOffice.org SDK" \
- --description "This assembly contains UNO-API metadata of the OpenOffice.org Software Development Kit (SDK)." \
- $(SOLARBINDIR)$/udkapi.rdb
+ $(OUT)$/bin$/cli_types.dll
-$(CLI_OFFAPI) : $(CLI_UDKAPI) $(SOLARBINDIR)$/offapi.rdb $(CLIMAKER)
- +$(CLIMAKER) -O $@ $(CLIMAKER_FLAGS) \
- --version "1.0.0.0" \
- --product "OpenOffice.org SDK" \
- --description "This assembly contains API metadata of the OpenOffice.org Software Development Kit (SDK)." \
- --reference $(CLI_UDKAPI) \
- -X $(SOLARBINDIR)$/udkapi.rdb $(SOLARBINDIR)$/offapi.rdb
+$(OUT)$/bin$/cli_types.dll : $(OUT)$/bin$/climaker.exe $(SOLARBINDIR)$/types.rdb
+ +$(OUT)$/bin$/climaker.exe $(CLIMAKERFLAGS) \
+ --out $@ \
+ --version "1.0.0.0" \
+ --product "OpenOffice.org SDK" \
+ --description "This assembly contains API metadata of the OpenOffice.org Software Development Kit (SDK)." \
+ $(SOLARBINDIR)$/types_doc.rdb
.ENDIF