b64816d455
2009-01-29 12:30:57 +0100 hjs r267116 : #i98365# fix unsetting g+s bit 2009-01-23 14:21:19 +0100 hjs r266819 : #i40246# - cleanup 2009-01-23 14:14:07 +0100 hjs r266818 : #i40246# - fix quoting of final echo line 2009-01-23 12:42:33 +0100 hjs r266807 : #i98365# leave higher bits alone 2009-01-23 11:23:42 +0100 rt r266799 : Header 2009-01-22 19:14:25 +0100 hjs r266753 : #i98365# remove unwanted file attributes from archives 2009-01-22 16:22:18 +0100 hjs r266737 : #i98365# remove unwanted file attributes from archives 2009-01-22 16:20:54 +0100 hjs r266736 : #i98365# remove unwanted file attributes from archives 2009-01-22 16:20:24 +0100 hjs r266735 : #i98365# remove unwanted file attributes from archives 2009-01-22 16:08:33 +0100 hjs r266734 : #i40246# renamed variable 2009-01-22 16:05:26 +0100 hjs r266733 : #i40246# renamed variable 2009-01-20 17:46:54 +0100 hjs r266610 : #i98290# cleanup 2009-01-19 19:32:19 +0100 hjs r266522 : CWS-TOOLING: rebase CWS ause099 to trunk@266428 (milestone: DEV300:m39) 2008-12-08 21:00:09 +0100 hjs r265049 : CWS-TOOLING: rebase CWS ause099 to trunk@264807 (milestone: DEV300:m37) 2008-11-27 18:25:18 +0100 hjs r264513 : #i40246# - support multiple patches per archive 2008-11-17 19:00:12 +0100 hjs r263738 : CWS-TOOLING: rebase CWS ause099 to trunk@263288 (milestone: DEV300:m35)
141 lines
4.3 KiB
Makefile
141 lines
4.3 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.16 $
|
|
#
|
|
# 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=libxslt
|
|
TARGET=so_libxslt
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
.INCLUDE : settings.mk
|
|
|
|
.IF "$(SYSTEM_LIBXSLT)" == "YES"
|
|
all:
|
|
@echo "An already available installation of libxslt should exist on your system."
|
|
@echo "Therefore the version provided here does not need to be built in addition."
|
|
.ENDIF
|
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
.INCLUDE : libxsltversion.mk
|
|
|
|
LIBXSLTVERSION=$(LIBXSLT_MAJOR).$(LIBXSLT_MINOR).$(LIBXSLT_MICRO)
|
|
|
|
TARFILE_NAME=$(PRJNAME)-$(LIBXSLTVERSION)
|
|
PATCH_FILES=$(TARFILE_NAME).patch
|
|
|
|
# This is only for UNX environment now
|
|
|
|
.IF "$(OS)"=="WNT"
|
|
.IF "$(COM)"=="GCC"
|
|
CONFIGURE_DIR=
|
|
CONFIGURE_ACTION=.$/configure
|
|
CONFIGURE_FLAGS=--enable-ipv6=no --without-crypto --without-python --enable-static=no --with-sax1=yes --build=i586-pc-mingw32 --host=i586-pc-mingw32 CFLAGS="$(xslt_CFLAGS) -D_MT" LDFLAGS="$(xslt_LDFLAGS) -no-undefined -L$(ILIB:s/;/ -L/)" LIBS="-lmingwthrd" LIBXML2LIB=$(LIBXML2LIB) OBJDUMP="$(WRAPCMD) objdump"
|
|
BUILD_ACTION=chmod 777 xslt-config && $(GNUMAKE)
|
|
BUILD_FLAGS+= -j$(EXTMAXPROCESS)
|
|
BUILD_DIR=$(CONFIGURE_DIR)
|
|
.IF "$(GUI)$(COM)"=="WNTGCC"
|
|
.EXPORT : PWD
|
|
.ENDIF
|
|
.ELSE
|
|
CONFIGURE_DIR=win32
|
|
CONFIGURE_ACTION=cscript configure.js
|
|
#CONFIGURE_FLAGS=iconv=no sax1=yes
|
|
.IF "$(debug)"!=""
|
|
CONFIGURE_FLAGS+=debug=yes
|
|
.ENDIF
|
|
BUILD_ACTION=nmake
|
|
BUILD_DIR=$(CONFIGURE_DIR)
|
|
.ENDIF
|
|
.ELSE
|
|
|
|
.IF "$(OS)$(COM)"=="LINUXGCC" || "$(OS)$(COM)"=="FREEBSDGCC"
|
|
LDFLAGS:=-Wl,-rpath,'$$$$ORIGIN:$$$$ORIGIN/../ure-link/lib' -Wl,-noinhibit-exec -Wl,-z,noexecstack
|
|
.ENDIF # "$(OS)$(COM)"=="LINUXGCC"
|
|
.IF "$(OS)$(COM)"=="SOLARISC52"
|
|
LDFLAGS:=-Wl,-R'$$$$ORIGIN:$$$$ORIGIN/../ure-link/lib'
|
|
.ENDIF # "$(OS)$(COM)"=="SOLARISC52"
|
|
|
|
.IF "$(SYSBASE)"!=""
|
|
CPPFLAGS+:=-I$(SOLARINCDIR)$/external -I$(SYSBASE)$/usr$/include $(EXTRA_CFLAGS)
|
|
.IF "$(OS)"=="SOLARIS" || "$(OS)"=="LINUX"
|
|
LDFLAGS+:=-L$(SOLARLIBDIR) -L$(SYSBASE)$/lib -L$(SYSBASE)$/usr$/lib -lpthread -ldl
|
|
.ENDIF
|
|
.ENDIF # "$(SYSBASE)"!=""
|
|
|
|
.EXPORT: CPPFLAGS
|
|
.EXPORT: LDFLAGS
|
|
.EXPORT: LIBXML2LIB
|
|
.EXPORT: ZLIB3RDLIB
|
|
|
|
.IF "$(COMNAME)"=="sunpro5"
|
|
CPPFLAGS+:=$(ARCH_FLAGS) -xc99=none
|
|
.ENDIF # "$(COMNAME)"=="sunpro5"
|
|
CONFIGURE_DIR=
|
|
CONFIGURE_ACTION=.$/configure
|
|
CONFIGURE_FLAGS=--enable-ipv6=no --without-crypto --without-python --enable-static=no --with-sax1=yes
|
|
BUILD_ACTION=chmod 777 xslt-config && $(GNUMAKE)
|
|
BUILD_FLAGS+= -j$(EXTMAXPROCESS)
|
|
BUILD_DIR=$(CONFIGURE_DIR)
|
|
.ENDIF
|
|
|
|
OUT2INC=libxslt$/*.h
|
|
|
|
.IF "$(OS)"=="MACOSX"
|
|
OUT2LIB+=libxslt$/.libs$/libxslt.*.dylib
|
|
OUT2LIB+=libexslt$/.libs$/libexslt.*.dylib
|
|
OUT2BIN+=xsltproc$/.libs$/xsltproc
|
|
OUT2BIN+=xslt-config
|
|
.ELIF "$(OS)"=="WNT"
|
|
.IF "$(COM)"=="GCC"
|
|
OUT2BIN+=libxslt$/.libs$/*.dll
|
|
OUT2BIN+=libexslt$/.libs$/*.dll
|
|
OUT2BIN+=xsltproc$/.libs$/*.exe*
|
|
OUT2BIN+=xslt-config
|
|
.ELSE
|
|
OUT2LIB+=win32$/bin.msvc$/*.lib
|
|
OUT2BIN+=win32$/bin.msvc$/*.dll
|
|
OUT2BIN+=win32$/bin.msvc$/*.exe*
|
|
.ENDIF
|
|
.ELSE
|
|
OUT2LIB+=libxslt$/.libs$/libxslt.so*
|
|
OUT2LIB+=libexslt$/.libs$/libexslt.so*
|
|
OUT2BIN+=xsltproc$/.libs$/xsltproc
|
|
OUT2BIN+=xslt-config
|
|
.ENDIF
|
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
.INCLUDE : set_ext.mk
|
|
.INCLUDE : target.mk
|
|
.INCLUDE : tg_ext.mk
|
|
|