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=ucb 26TARGET=ucb 27ENABLE_EXCEPTIONS=TRUE 28NO_BSYMBOLIC=TRUE 29 30# Version 31UCB_MAJOR=1 32 33.INCLUDE: settings.mk 34.IF "$(L10N_framework)"=="" 35 36SLOFILES=\ 37 $(SLO)$/identify.obj \ 38 $(SLO)$/ucb.obj \ 39 $(SLO)$/ucbserv.obj \ 40 $(SLO)$/ucbstore.obj \ 41 $(SLO)$/ucbprops.obj \ 42 $(SLO)$/provprox.obj \ 43 $(SLO)$/ucbcmds.obj \ 44 $(SLO)$/cmdenv.obj 45 46LIB1TARGET=$(SLB)$/_$(TARGET).lib 47LIB1OBJFILES=$(SLOFILES) 48 49SHL1TARGET=$(TARGET)$(UCB_MAJOR) 50SHL1DEF=$(MISC)$/$(SHL1TARGET).def 51SHL1STDLIBS=\ 52 $(CPPUHELPERLIB) \ 53 $(CPPULIB) \ 54 $(SALLIB) \ 55 $(UCBHELPERLIB) 56SHL1LIBS=\ 57 $(LIB1TARGET) \ 58 $(SLB)$/regexp.lib 59SHL1IMPLIB=i$(TARGET) 60 61.IF "$(GUI)" == "OS2" 62DEF1EXPORTFILE=exports2.dxp 63.ELSE 64SHL1VERSIONMAP=$(SOLARENV)/src/component.map 65.ENDIF 66 67DEF1NAME=$(SHL1TARGET) 68 69.ENDIF # L10N_framework 70 71.INCLUDE: target.mk 72 73 74ALLTAR : $(MISC)/ucb1.component 75 76$(MISC)/ucb1.component .ERRREMOVE : $(SOLARENV)/bin/createcomponent.xslt \ 77 ucb1.component 78 $(XSLTPROC) --nonet --stringparam uri \ 79 '$(COMPONENTPREFIX_BASIS_NATIVE)$(SHL1TARGETN:f)' -o $@ \ 80 $(SOLARENV)/bin/createcomponent.xslt ucb1.component 81