forked from amazingfate/loongoffice
2009-08-19 16:18:46 +0200 tono r275156 : i#103794: mingw gcc-4.4.0 port: make use of dwarf2 eh 2009-08-05 12:27:41 +0200 tono r274650 : CWS-TOOLING: rebase CWS mingwport22 to trunk@274622 (milestone: DEV300:m54) 2009-08-01 00:56:35 +0200 tono r274552 : i#103795: mingw gcc-4.4.0 port: use gcc dll 2009-07-27 00:13:27 +0200 tono r274344 : i#103795: mingw gcc-4.4.0 port: use gcc dll 2009-07-25 06:19:59 +0200 tono r274332 : i#103803: mingw gcc-4.4.0 port: invalid "extern static" 2009-07-25 06:13:56 +0200 tono r274331 : i#103802: mingw gcc-4.4.0 port: inhibit use of pthread 2009-07-25 06:05:22 +0200 tono r274330 : i#103801: mingw gcc-4.4.0 port: specify relocatable data section 2009-07-25 05:54:09 +0200 tono r274329 : i#103800: mingw gcc-4.4.0 port: remove invalid scope 2009-07-25 05:44:58 +0200 tono r274328 : i#103799: mingw gcc-4.4.0 port: add some #include 2009-07-25 05:33:09 +0200 tono r274327 : i#103798: mingw gcc-4.4.0 port: add backward in include path 2009-07-25 05:24:42 +0200 tono r274326 : i#103797: mingw gcc-4.4.0 port: nooptimize c++-uno bridge 2009-07-25 05:16:20 +0200 tono r274325 : i#103795: mingw gcc-4.4.0 port: use gcc dll 2009-07-25 04:01:59 +0200 tono r274324 : i#103794: mingw gcc-4.4.0 port: make use of dwarf2 eh 2009-07-25 02:44:01 +0200 tono r274322 : i#103793: mingw port: Exclude msvc[pr]80.dll from packaging 2009-07-25 02:28:21 +0200 tono r274321 : i#103791: mingw port fix typo
89 lines
2.2 KiB
Makefile
89 lines
2.2 KiB
Makefile
#*************************************************************************
|
|
#
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
|
#
|
|
# $RCSfile: makefile.mk,v $
|
|
#
|
|
# $Revision: 1.1.8.2 $
|
|
#
|
|
# last change: $Author: mav $ $Date: 2008/10/30 11:59:06 $
|
|
#
|
|
# The Contents of this file are made available subject to
|
|
# the terms of GNU Lesser General Public License Version 2.1.
|
|
#
|
|
#
|
|
# GNU Lesser General Public License Version 2.1
|
|
# =============================================
|
|
# Copyright 2005 by Sun Microsystems, Inc.
|
|
# 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License version 2.1, as published by the Free Software Foundation.
|
|
#
|
|
# This library 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 for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
# MA 02111-1307 USA
|
|
#
|
|
#*************************************************************************
|
|
|
|
PRJ=..$/..
|
|
PRJNAME=embedserv
|
|
TARGET=inprocserv
|
|
|
|
use_shl_versions=
|
|
|
|
# --- Settings ----------------------------------
|
|
.INCLUDE : settings.mk
|
|
|
|
.IF "$(GUI)" == "WNT"
|
|
|
|
LIBTARGET=NO
|
|
USE_DEFFILE=YES
|
|
LIBCMT=libcmt.lib
|
|
UWINAPILIB=
|
|
|
|
# --- Files -------------------------------------
|
|
|
|
SLOFILES=\
|
|
$(SLO)$/dllentry.obj \
|
|
$(SLO)$/advisesink.obj \
|
|
$(SLO)$/inprocembobj.obj
|
|
|
|
SHL1TARGET=$(TARGET)
|
|
.IF "$(COM)"=="GCC"
|
|
SHL1STDLIBS += -lstdc++
|
|
.IF "$(MINGW_GCCLIB_EH)"=="YES"
|
|
SHL1STDLIBS += -lgcc_eh
|
|
.ENDIF
|
|
SHL1STDLIBS += -lgcc -lmingw32 -lmoldname -lmsvcrt
|
|
.ELSE
|
|
SHL1STDLIBS=
|
|
.ENDIF
|
|
|
|
SHL1STDLIBS+=\
|
|
$(UUIDLIB)\
|
|
$(OLE32LIB)\
|
|
$(GDI32LIB)\
|
|
$(ADVAPI32LIB)
|
|
|
|
SHL1OBJS=$(SLOFILES)
|
|
|
|
SHL1DEF=$(MISC)$/$(TARGET).def
|
|
|
|
DEF1NAME= $(TARGET)
|
|
DEF1EXPORTFILE= exports.dxp
|
|
|
|
.ENDIF
|
|
|
|
# --- Targets ----------------------------------
|
|
|
|
.INCLUDE : target.mk
|
|
|