2004-02-06 03:15:10 -06:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2005-09-07 13:37:31 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2005-09-07 13:37:31 -05:00
|
|
|
# $RCSfile: makefile.mk,v $
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2005-12-28 09:59:16 -06:00
|
|
|
# $Revision: 1.14 $
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2005-12-28 09:59:16 -06:00
|
|
|
# last change: $Author: hr $ $Date: 2005-12-28 16:59:16 $
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2005-09-07 13:37:31 -05:00
|
|
|
# The Contents of this file are made available subject to
|
|
|
|
# the terms of GNU Lesser General Public License Version 2.1.
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
|
|
|
#
|
2005-09-07 13:37:31 -05:00
|
|
|
# GNU Lesser General Public License Version 2.1
|
|
|
|
# =============================================
|
|
|
|
# Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
# 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2005-09-07 13:37:31 -05:00
|
|
|
# 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.
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2005-09-07 13:37:31 -05:00
|
|
|
# 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.
|
2004-02-06 03:15:10 -06:00
|
|
|
#
|
2005-09-07 13:37:31 -05:00
|
|
|
# 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
|
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 --------------------------------------------------------
|
|
|
|
|
2005-02-04 04:29:29 -06:00
|
|
|
LIBXML2VERSION=2.6.17
|
2004-02-06 03:15:10 -06:00
|
|
|
|
|
|
|
TARFILE_NAME=$(PRJNAME)-$(LIBXML2VERSION)
|
|
|
|
PATCH_FILE_NAME=$(TARFILE_NAME).patch
|
|
|
|
|
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"
|
|
|
|
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)
|
|
|
|
.ELSE
|
2005-12-28 09:59:16 -06:00
|
|
|
.IF "$(SYSBASE)"!=""
|
|
|
|
xml2_CFLAGS+=-I$(SYSBASE)$/usr$/include
|
|
|
|
.IF "$(COMNAME)"=="sunpro5"
|
|
|
|
xml2_CFLAGS+=$(C_RESTRICTIONFLAGS)
|
|
|
|
.ENDIF # "$(COMNAME)"=="sunpro5"
|
|
|
|
xml2_LDFLAGS+=-L$(SYSBASE)$/usr$/lib
|
|
|
|
.ENDIF # "$(SYSBASE)"!=""
|
2004-07-23 05:06:38 -05:00
|
|
|
CONFIGURE_DIR=
|
|
|
|
CONFIGURE_ACTION=.$/configure
|
2005-12-28 09:59:16 -06:00
|
|
|
CONFIGURE_FLAGS=--enable-ipv6=no --without-python --enable-static=no --with-sax1=yes CFLAGS="$(xml2_CFLAGS)" LDFLAGS="$(xml2_LDFLAGS)"
|
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"
|
|
|
|
OUT2LIB+=.libs$/libxml2.*.dylib
|
|
|
|
.ELIF "$(OS)"=="WNT"
|
2005-02-04 04:29:29 -06:00
|
|
|
OUT2LIB+=win32$/bin.msvc$/*.lib
|
|
|
|
OUT2BIN+=win32$/bin.msvc$/*.dll
|
2004-07-23 05:06:38 -05:00
|
|
|
.ELSE
|
|
|
|
OUT2LIB+=.libs$/libxml2.so*
|
|
|
|
.ENDIF
|
|
|
|
|
2004-02-06 03:15:10 -06:00
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : set_ext.mk
|
|
|
|
.INCLUDE : target.mk
|
|
|
|
.INCLUDE : tg_ext.mk
|
|
|
|
|