Bump version to 5.0-14
[LibreOffice.git] / sc / workben / makefile.mk
blob6ac900932477d4b545f34daa62f4509cc4e3495c
2 # This file is part of the LibreOffice project.
4 # This Source Code Form is subject to the terms of the Mozilla Public
5 # License, v. 2.0. If a copy of the MPL was not distributed with this
6 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 # This file incorporates work covered by the following license notice:
10 # Licensed to the Apache Software Foundation (ASF) under one or more
11 # contributor license agreements. See the NOTICE file distributed
12 # with this work for additional information regarding copyright
13 # ownership. The ASF licenses this file to you under the Apache
14 # License, Version 2.0 (the "License"); you may not use this file
15 # except in compliance with the License. You may obtain a copy of
16 # the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 PRJ=..
20 PRJNAME=sc
21 TARGET=tst
22 IDLMAP=map.idl
24 # --- Settings -----------------------------------------------------
26 .INCLUDE : settings.mk
28 # --- Files --------------------------------------------------------
30 UNOUCRDEP= $(BIN)$/applicat.rdb
31 UNOUCRRDB= $(BIN)$/applicat.rdb
33 UNOTYPES=\
34 com.sun.star.util.Date \
35 com.sun.star.sheet.XAddIn \
36 com.sun.star.sheet.XVolatileResult \
37 com.sun.star.lang.XServiceName \
38 com.sun.star.lang.XServiceInfo \
39 com.sun.star.lang.Locale \
40 com.sun.star.lang.XSingleServiceFactory \
41 com.sun.star.registry.XRegistryKey \
42 com.sun.star.uno.XWeak \
43 com.sun.star.uno.XAggregation \
44 com.sun.star.uno.TypeClass \
45 com.sun.star.lang.XTypeProvider \
46 com.sun.star.lang.XMultiServiceFactory \
47 stardiv.starcalc.test.XTestAddIn
49 PACKAGE=stardiv$/starcalc$/test
50 IDLFILES= testadd.idl
52 SLOFILES= \
53 $(SLO)$/addin.obj \
54 $(SLO)$/result.obj
56 EXCEPTIONSFILES= \
57 $(SLO)$/addin.obj \
58 $(SLO)$/result.obj
60 SHL1TARGET= $(TARGET)$(DLLPOSTFIX)
62 SHL1STDLIBS=$(VCLLIB) $(TOOLSLIB) $(SVLLIB) $(TKLIB) $(SALLIB) $(CPPULIB) $(CPPUHELPERLIB)
64 SHL1DEPN= $(L)$/itools.lib $(SVLIBDEPEND)
65 SHL1DEF= $(MISC)$/$(SHL1TARGET).def
66 SHL1IMPLIB=$(TARGET)
67 SHL1OBJS= $(SLO)$/addin.obj $(SLO)$/result.obj $(SLO)$/workben$/testadd.obj
69 # --- Targets ------------------------------------------------------
70 .INCLUDE : target.mk
72 .IF "$(OS)" == "WNT"
74 $(MISC)$/$(SHL1TARGET).def: makefile.mk
75 @echo ------------------------------
76 @echo Making: $@
77 @echo LIBRARY $(SHL1TARGET) >$@
78 .IF "$(COM)"!="GCC"
79 @echo DESCRIPTION 'StarOne Test-DLL' >>$@
80 @echo DATA READ WRITE NONSHARED >>$@
81 .ENDIF
82 @echo EXPORTS >>$@
83 @echo component_writeInfo @25 >>$@
84 @echo component_getFactory @26 >>$@
85 .ENDIF