2004-02-06 03:15:10 -06:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-11 01:19:53 -05:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
|
|
|
# Copyright 2008 by Sun Microsystems, Inc.
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2008-04-11 01:19:53 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2008-04-11 01:19:53 -05:00
|
|
|
# $RCSfile: makefile.mk,v $
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2008-07-22 11:24:57 -05:00
|
|
|
# $Revision: 1.24 $
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2008-04-11 01:19:53 -05:00
|
|
|
# This file is part of OpenOffice.org.
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2008-04-11 01:19:53 -05:00
|
|
|
# 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.
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2008-04-11 01:19:53 -05:00
|
|
|
# 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).
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2008-04-11 01:19:53 -05:00
|
|
|
# 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.
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
PRJ=.
|
|
|
|
|
|
|
|
PRJNAME=libxml2
|
|
|
|
TARGET=so_libxml2
|
|
|
|
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : settings.mk
|
|
|
|
|
2004-09-24 01:54:45 -05:00
|
|
|
.IF "$(SYSTEM_LIBXML)" == "YES"
|
|
|
|
all:
|
|
|
|
@echo "An already available installation of libxml should exist on your system."
|
|
|
|
@echo "Therefore the version provided here does not need to be built in addition."
|
|
|
|
.ENDIF
|
|
|
|
|
2004-02-06 03:15:10 -06:00
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
|
2008-06-06 05:48:59 -05:00
|
|
|
LIBXML2VERSION=2.6.31
|
2004-02-06 03:15:10 -06:00
|
|
|
|
|
|
|
TARFILE_NAME=$(PRJNAME)-$(LIBXML2VERSION)
|
2008-06-06 05:48:59 -05:00
|
|
|
#.IF "$(OS)$(COM)"=="WNTGCC"
|
|
|
|
#PATCH_FILE_NAME=$(TARFILE_NAME)-mingw.patch
|
|
|
|
#.ELSE
|
2004-02-06 03:15:10 -06:00
|
|
|
PATCH_FILE_NAME=$(TARFILE_NAME).patch
|
2008-06-06 05:48:59 -05:00
|
|
|
#.ENDIF
|
2004-02-06 03:15:10 -06:00
|
|
|
|
2004-11-16 06:27:52 -06:00
|
|
|
# This is only for UNX environment now
|
2004-09-21 03:15:57 -05:00
|
|
|
|
2004-07-23 05:06:38 -05:00
|
|
|
.IF "$(OS)"=="WNT"
|
2007-03-26 07:29:01 -05:00
|
|
|
.IF "$(COM)"=="GCC"
|
|
|
|
CONFIGURE_DIR=
|
|
|
|
CONFIGURE_ACTION=.$/configure
|
|
|
|
CONFIGURE_FLAGS=--enable-ipv6=no --without-python --enable-static=no --without-debug --build=i586-pc-mingw32 --host=i586-pc-mingw32 lt_cv_cc_dll_switch="-shared" CFLAGS=-D_MT LDFLAGS="-no-undefined -Wl,--enable-runtime-pseudo-reloc -L$(ILIB:s/;/ -L/)" LIBS="-lws2_32 -lmingwthrd" OBJDUMP="$(WRAPCMD) objdump"
|
|
|
|
BUILD_ACTION=$(GNUMAKE)
|
|
|
|
BUILD_DIR=$(CONFIGURE_DIR)
|
|
|
|
.ELSE
|
2004-07-23 05:06:38 -05:00
|
|
|
CONFIGURE_DIR=win32
|
|
|
|
CONFIGURE_ACTION=cscript configure.js
|
2005-02-04 04:29:29 -06:00
|
|
|
CONFIGURE_FLAGS=iconv=no sax1=yes
|
2005-10-18 02:48:21 -05:00
|
|
|
.IF "$(debug)"!=""
|
|
|
|
CONFIGURE_FLAGS+=debug=yes
|
|
|
|
.ENDIF
|
2004-07-23 05:06:38 -05:00
|
|
|
BUILD_ACTION=nmake
|
|
|
|
BUILD_DIR=$(CONFIGURE_DIR)
|
2007-03-26 07:29:01 -05:00
|
|
|
.ENDIF
|
2004-07-23 05:06:38 -05:00
|
|
|
.ELSE
|
2005-12-28 09:59:16 -06:00
|
|
|
.IF "$(SYSBASE)"!=""
|
2008-01-04 07:58:40 -06:00
|
|
|
xml2_CFLAGS+=-I$(SYSBASE)$/usr$/include
|
2005-12-28 09:59:16 -06:00
|
|
|
.IF "$(COMNAME)"=="sunpro5"
|
2008-06-16 07:54:36 -05:00
|
|
|
xml2_CFLAGS+=$(ARCH_FLAGS) $(C_RESTRICTIONFLAGS)
|
2005-12-28 09:59:16 -06:00
|
|
|
.ENDIF # "$(COMNAME)"=="sunpro5"
|
|
|
|
xml2_LDFLAGS+=-L$(SYSBASE)$/usr$/lib
|
|
|
|
.ENDIF # "$(SYSBASE)"!=""
|
2007-03-26 06:25:32 -05:00
|
|
|
|
|
|
|
.IF "$(OS)$(COM)"=="LINUXGCC"
|
|
|
|
xml2_LDFLAGS+=-Wl,-z,noexecstack
|
|
|
|
.ENDIF
|
|
|
|
|
2004-07-23 05:06:38 -05:00
|
|
|
CONFIGURE_DIR=
|
2008-07-22 11:24:57 -05:00
|
|
|
.IF "$(OS)"=="OS2"
|
|
|
|
CONFIGURE_ACTION=sh .$/configure
|
|
|
|
CONFIGURE_FLAGS=--enable-ipv6=no --without-python --enable-static=yes --with-sax1=yes ADDCFLAGS="$(xml2_CFLAGS)" CFLAGS="$(EXTRA_CFLAGS)" LDFLAGS="$(xml2_LDFLAGS) $(EXTRA_LINKFLAGS)"
|
|
|
|
.ELSE
|
2004-07-23 05:06:38 -05:00
|
|
|
CONFIGURE_ACTION=.$/configure
|
2008-01-09 07:19:06 -06:00
|
|
|
CONFIGURE_FLAGS=--enable-ipv6=no --without-python --enable-static=no --with-sax1=yes ADDCFLAGS="$(xml2_CFLAGS) $(EXTRA_CFLAGS)" LDFLAGS="$(xml2_LDFLAGS) $(EXTRA_LINKFLAGS)"
|
2008-07-22 11:24:57 -05:00
|
|
|
.ENDIF
|
2004-07-23 05:06:38 -05:00
|
|
|
BUILD_ACTION=$(GNUMAKE)
|
2005-01-28 09:07:43 -06:00
|
|
|
BUILD_FLAGS+= -j$(EXTMAXPROCESS)
|
2004-07-23 05:06:38 -05:00
|
|
|
BUILD_DIR=$(CONFIGURE_DIR)
|
|
|
|
.ENDIF
|
2004-02-06 03:15:10 -06:00
|
|
|
|
|
|
|
|
|
|
|
OUTDIR2INC=include$/libxml
|
|
|
|
|
2004-07-23 05:06:38 -05:00
|
|
|
.IF "$(OS)"=="MACOSX"
|
2008-03-18 06:25:18 -05:00
|
|
|
EXTRPATH=URELIB
|
2004-07-23 05:06:38 -05:00
|
|
|
OUT2LIB+=.libs$/libxml2.*.dylib
|
2007-05-25 09:02:19 -05:00
|
|
|
OUT2BIN+=.libs$/xmllint
|
2008-06-06 05:48:59 -05:00
|
|
|
OUT2BIN+=xml2-config
|
2004-07-23 05:06:38 -05:00
|
|
|
.ELIF "$(OS)"=="WNT"
|
2007-03-26 07:29:01 -05:00
|
|
|
.IF "$(COM)"=="GCC"
|
|
|
|
OUT2LIB+=.libs$/libxml2*.a
|
|
|
|
OUT2BIN+=.libs$/libxml2*.dll
|
2007-05-25 09:02:19 -05:00
|
|
|
OUT2BIN+=.libs$/xmllint.exe
|
2008-06-06 05:48:59 -05:00
|
|
|
OUT2BIN+=xml2-config
|
2007-03-26 07:29:01 -05:00
|
|
|
.ELSE
|
2005-02-04 04:29:29 -06:00
|
|
|
OUT2LIB+=win32$/bin.msvc$/*.lib
|
|
|
|
OUT2BIN+=win32$/bin.msvc$/*.dll
|
2007-05-25 09:02:19 -05:00
|
|
|
OUT2BIN+=win32$/bin.msvc$/xmllint.exe
|
2007-03-26 07:29:01 -05:00
|
|
|
.ENDIF
|
2004-07-23 05:06:38 -05:00
|
|
|
.ELSE
|
|
|
|
OUT2LIB+=.libs$/libxml2.so*
|
2007-05-25 09:02:19 -05:00
|
|
|
OUT2BIN+=.libs$/xmllint
|
2008-06-06 05:48:59 -05:00
|
|
|
OUT2BIN+=xml2-config
|
2004-07-23 05:06:38 -05:00
|
|
|
.ENDIF
|
|
|
|
|
2004-02-06 03:15:10 -06:00
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : set_ext.mk
|
|
|
|
.INCLUDE : target.mk
|
|
|
|
.INCLUDE : tg_ext.mk
|
|
|
|
|