xref: /AOO41X/main/linguistic/workben/makefile.mk (revision 83137a03adbb58b5b3bdafefefa1e93de35e0011)
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 = ..
25
26PRJNAME = linguistic
27TARGET  = lex
28ENABLE_EXCEPTIONS=TRUE
29USE_DEFFILE=TRUE
30
31#----- Settings ---------------------------------------------------------
32
33.INCLUDE : settings.mk
34
35# --- Files --------------------------------------------------------
36
37UNOTYPES=\
38    com.sun.star.linguistic2.DictionaryEvent\
39    com.sun.star.linguistic2.DictionaryEventFlags\
40    com.sun.star.linguistic2.DictionaryListEvent\
41    com.sun.star.linguistic2.DictionaryListEventFlags\
42    com.sun.star.linguistic2.DictionaryType\
43    com.sun.star.linguistic2.LinguServiceEventFlags\
44    com.sun.star.linguistic2.SpellFailure\
45    com.sun.star.linguistic2.XDictionary\
46    com.sun.star.linguistic2.XDictionary1\
47    com.sun.star.linguistic2.XDictionaryEntry\
48    com.sun.star.linguistic2.XDictionaryEventListener\
49    com.sun.star.linguistic2.XDictionaryList\
50    com.sun.star.linguistic2.XDictionaryListEventListener\
51    com.sun.star.linguistic2.XHyphenatedWord\
52    com.sun.star.linguistic2.XHyphenator\
53    com.sun.star.linguistic2.XLinguServiceEventBroadcaster\
54    com.sun.star.linguistic2.XLinguServiceEventListener\
55    com.sun.star.linguistic2.XLinguServiceManager\
56    com.sun.star.linguistic2.XMeaning\
57    com.sun.star.linguistic2.XPossibleHyphens\
58    com.sun.star.linguistic2.XSearchableDictionaryList\
59    com.sun.star.linguistic2.XSpellAlternatives\
60    com.sun.star.linguistic2.XSpellChecker\
61    com.sun.star.linguistic2.XSupportedLocales\
62    com.sun.star.linguistic2.XThesaurus
63
64
65SLOFILES=   \
66        $(SLO)$/sprophelp.obj\
67        $(SLO)$/sreg.obj\
68        $(SLO)$/sspellimp.obj
69
70
71SHL1TARGET= $(TARGET)$(DLLPOSTFIX)
72
73SHL1STDLIBS= \
74        $(CPPULIB)   \
75        $(CPPUHELPERLIB)     \
76        $(VOSLIB)       \
77        $(TOOLSLIB)     \
78        $(SVTOOLLIB)    \
79        $(SVLLIB)       \
80        $(VCLLIB)       \
81        $(SFXLIB)       \
82        $(SALLIB)       \
83        $(UCBHELPERLIB) \
84        $(UNOTOOLSLIB)  \
85        $(LNGLIB)
86
87# build DLL
88SHL1LIBS=       $(SLB)$/$(TARGET).lib
89SHL1IMPLIB=     i$(TARGET)
90SHL1DEPN=       $(SHL1LIBS)
91SHL1DEF=        $(MISC)$/$(SHL1TARGET).def
92.IF "$(OS)"!="MACOSX"
93SHL1VERSIONMAP=$(SOLARENV)/src/component.map
94.ENDIF
95
96# build DEF file
97DEF1NAME     =$(SHL1TARGET)
98DEF1EXPORTFILE= exports.dxp
99
100# --- Targets ------------------------------------------------------
101
102.INCLUDE : target.mk
103
104