forked from amazingfate/loongoffice
2009-09-09 19:47:56 +0200 pl r276016 : merge fix for #i104390# into moved code 2009-09-07 12:50:47 +0200 pl r275891 : remove nonexistant header 2009-09-04 16:47:05 +0200 pl r275819 : forgot calling convention for Windoze 2009-09-04 13:27:36 +0200 pl r275800 : #150926# remove X11 dependency 2009-09-04 13:19:08 +0200 pl r275799 : #150926# move mac dtrans service to vcl to be used in service implementation 2009-09-03 21:19:01 +0200 pl r275774 : fix warning, adjust comment 2009-09-03 18:36:01 +0200 pl r275768 : no more sjlib 2009-09-03 17:56:49 +0200 pl r275767 : remove unused X11 link dependency 2009-09-03 17:43:35 +0200 pl r275766 : headless not used in X11 case 2009-09-03 17:34:36 +0200 pl r275765 : #150926# bye bye sj2 2009-09-03 16:19:04 +0200 pl r275761 : #150926# bye bye sj2, x11 dependenices removed where not necessary 2009-09-01 17:22:54 +0200 pl r275674 : #150926# step 1: move X11 code from dtrans to vcl, adapt glue code
113 lines
2.5 KiB
Makefile
113 lines
2.5 KiB
Makefile
#*************************************************************************
|
|
#
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
#
|
|
# Copyright 2008 by Sun Microsystems, Inc.
|
|
#
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
|
#
|
|
# $RCSfile: makefile.mk,v $
|
|
#
|
|
# $Revision: 1.17 $
|
|
#
|
|
# This file is part of OpenOffice.org.
|
|
#
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
# only, as published by the Free Software Foundation.
|
|
#
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser General Public License version 3 for more details
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
# <http://www.openoffice.org/license.html>
|
|
# for a copy of the LGPLv3 License.
|
|
#
|
|
#*************************************************************************
|
|
PRJ=..$/..$/..
|
|
|
|
PRJNAME=extensions
|
|
TARGET=pl
|
|
TARGETTYPE=GUI
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
.INCLUDE : settings.mk
|
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
.IF "$(WITH_MOZILLA)" != "NO"
|
|
|
|
LIB1TARGET = $(SLB)$/plall.lib
|
|
LIB1FILES = \
|
|
$(SLB)$/plbase.lib \
|
|
$(SHL1LINKLIB)
|
|
|
|
.IF "$(GUI)" == "UNX"
|
|
.IF "$(GUIBASE)"=="aqua"
|
|
.IF "$(WITH_MOZILLA)"=="YES"
|
|
SHL1LINKLIB = $(SLB)$/plaqua.lib
|
|
.ENDIF
|
|
.ELSE
|
|
SHL1LINKLIB = $(SLB)$/plunx.lib
|
|
.ENDIF # $(GUIBASE)==aqua
|
|
.IF "$(OS)" == "SOLARIS"
|
|
SHL1OWNLIBS = -lsocket
|
|
.ENDIF # SOLARIS
|
|
.ENDIF # UNX
|
|
|
|
.IF "$(GUI)" == "WNT"
|
|
SHL1LINKLIB = $(SLB)$/plwin.lib
|
|
SHL1OWNLIBS = \
|
|
$(VERSIONLIB) \
|
|
$(OLE32LIB) \
|
|
$(ADVAPI32LIB)
|
|
.ENDIF # WNT
|
|
|
|
SHL1TARGET= $(TARGET)$(DLLPOSTFIX)
|
|
SHL1IMPLIB= i$(TARGET)
|
|
|
|
SHL1VERSIONMAP=exports.map
|
|
SHL1DEF=$(MISC)$/$(SHL1TARGET).def
|
|
DEF1NAME=$(SHL1TARGET)
|
|
|
|
SHL1LIBS=$(LIB1TARGET)
|
|
|
|
.IF "$(OS)"=="MACOSX"
|
|
SHL1STDLIBS= \
|
|
$(LIBSTLPORT) \
|
|
$(TKLIB)
|
|
.ELSE
|
|
SHL1STDLIBS= \
|
|
$(TKLIB)
|
|
.ENDIF
|
|
|
|
SHL1STDLIBS+= \
|
|
$(VCLLIB) \
|
|
$(SVLLIB) \
|
|
$(TOOLSLIB) \
|
|
$(VOSLIB) \
|
|
$(UCBHELPERLIB) \
|
|
$(CPPUHELPERLIB) \
|
|
$(CPPULIB) \
|
|
$(SALLIB)
|
|
|
|
.IF "$(GUIBASE)"=="unx"
|
|
SHL1STDLIBS+=$(X11LINK_DYNAMIC)
|
|
.ENDIF
|
|
|
|
SHL1STDLIBS+=$(SHL1OWNLIBS)
|
|
|
|
.ENDIF # $(WITH_MOZILLA) != "NO"
|
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
.INCLUDE : target.mk
|
|
|
|
|
|
|