2001-09-03 13:28:17 +00:00
|
|
|
#
|
2012-06-21 14:30:25 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2001-09-03 13:28:17 +00:00
|
|
|
#
|
2012-06-21 14:30:25 +01:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2001-09-03 13:28:17 +00:00
|
|
|
#
|
2012-06-21 14:30:25 +01:00
|
|
|
# This file incorporates work covered by the following license notice:
|
2001-09-03 13:28:17 +00:00
|
|
|
#
|
2012-06-21 14:30:25 +01:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed
|
|
|
|
# with this work for additional information regarding copyright
|
|
|
|
# ownership. The ASF licenses this file to you under the Apache
|
|
|
|
# License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
2001-09-03 13:28:17 +00:00
|
|
|
#
|
2011-02-02 11:53:23 +01:00
|
|
|
|
2006-12-01 16:21:27 +00:00
|
|
|
LINKFLAGSDEFS=""
|
|
|
|
|
2001-09-03 13:28:17 +00:00
|
|
|
PRJ=..$/..
|
|
|
|
|
|
|
|
PRJNAME=cppuhelper
|
|
|
|
TARGET=defbootstrap
|
|
|
|
ENABLE_EXCEPTIONS=TRUE
|
|
|
|
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : settings.mk
|
|
|
|
|
2007-11-06 14:38:41 +00:00
|
|
|
PERLINST1:=$(shell @+$(PERL) -V:installarchlib)
|
2006-12-01 16:21:27 +00:00
|
|
|
PERLINST2:=$(subst,installarchlib=, $(PERLINST1))
|
|
|
|
PERLINST3:=$(PERLINST2:s/'//)
|
|
|
|
PERLINST :=$(PERLINST3:s/;//)
|
|
|
|
|
|
|
|
PERLLIBS:=$(PERLINST)$/CORE
|
|
|
|
PERLINCS:=$(PERLINST)$/CORE
|
|
|
|
|
|
|
|
CFLAGS += -I$(PERLINCS)
|
|
|
|
|
2012-12-12 01:07:09 +02:00
|
|
|
.IF "$(OS)"=="WNT"
|
2008-03-06 14:03:28 +00:00
|
|
|
PERLLIB=perl58.lib
|
2006-12-01 16:21:27 +00:00
|
|
|
|
2008-03-06 14:03:28 +00:00
|
|
|
LIB!:=$(LIB);$(PERLLIBS)
|
|
|
|
.EXPORT : LIB
|
2006-12-01 16:21:27 +00:00
|
|
|
|
|
|
|
.ENDIF
|
|
|
|
|
2001-09-03 13:28:17 +00:00
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
|
|
|
|
SLOFILES= $(SLO)$/defbootstrap_lib.obj
|
|
|
|
|
|
|
|
SHL1TARGET=$(TARGET)
|
|
|
|
|
|
|
|
SHL1STDLIBS= \
|
|
|
|
$(PERLLIB) \
|
|
|
|
$(CPPUHELPERLIB) \
|
|
|
|
$(CPPULIB) \
|
|
|
|
$(SALLIB)
|
|
|
|
|
|
|
|
SHL1DEPN=
|
|
|
|
SHL1IMPLIB=i$(TARGET)
|
|
|
|
SHL1LIBS=$(SLB)$/$(TARGET).lib
|
|
|
|
SHL1DEF=$(MISC)$/$(SHL1TARGET).def
|
|
|
|
|
|
|
|
DEF1NAME=$(SHL1TARGET)
|
|
|
|
SHL1VERSIONMAP=defbootstrap.map
|
|
|
|
|
|
|
|
|
2012-12-12 01:07:09 +02:00
|
|
|
.IF "$(OS)"=="WNT"
|
2001-09-03 13:28:17 +00:00
|
|
|
UNODLL=$(DLLDEST)$/UNO.dll
|
|
|
|
.ELSE
|
|
|
|
UNODLL=$(DLLDEST)$/UNO.so
|
|
|
|
.ENDIF
|
|
|
|
|
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
|
|
|
|
.IF "$(depend)" == ""
|
|
|
|
ALL: \
|
|
|
|
ALLTAR \
|
|
|
|
$(UNODLL) \
|
|
|
|
$(BIN)$/UNO.pm
|
|
|
|
.ENDIF
|
|
|
|
|
|
|
|
$(BIN)$/UNO.pm: UNO.pm
|
|
|
|
cp UNO.pm $@
|
|
|
|
|
|
|
|
$(UNODLL): $(SHL1TARGETN)
|
|
|
|
cp $(SHL1TARGETN) $@
|
|
|
|
|
|
|
|
.INCLUDE : target.mk
|
|
|
|
|