2002-01-23 06:33:44 -06:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-11 01:16:07 -05:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2010-03-23 08:53:18 -05:00
|
|
|
#
|
2010-02-12 08:01:35 -06:00
|
|
|
# Copyright 2000, 2010 Oracle and/or its affiliates.
|
2002-01-23 06:33:44 -06:00
|
|
|
#
|
2008-04-11 01:16:07 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2002-01-23 06:33:44 -06:00
|
|
|
#
|
2008-04-11 01:16:07 -05:00
|
|
|
# This file is part of OpenOffice.org.
|
2002-01-23 06:33:44 -06:00
|
|
|
#
|
2008-04-11 01:16:07 -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.
|
2002-01-23 06:33:44 -06:00
|
|
|
#
|
2008-04-11 01:16:07 -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).
|
2002-01-23 06:33:44 -06:00
|
|
|
#
|
2008-04-11 01:16:07 -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.
|
2002-01-23 06:33:44 -06:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
PRJ=.
|
|
|
|
|
|
|
|
PRJNAME=so_neon
|
|
|
|
TARGET=so_neon
|
|
|
|
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : settings.mk
|
|
|
|
|
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
|
2004-09-08 10:51:17 -05:00
|
|
|
.IF "$(SYSTEM_NEON)" == "YES"
|
|
|
|
@all:
|
|
|
|
@echo "Using system neon...."
|
|
|
|
.ENDIF
|
|
|
|
|
2006-04-20 07:31:10 -05:00
|
|
|
.IF "$(DISABLE_NEON)" == "TRUE"
|
|
|
|
@all:
|
|
|
|
@echo "neon disabled...."
|
|
|
|
.ENDIF
|
|
|
|
|
2010-02-03 09:32:05 -06:00
|
|
|
NEON_NAME=neon-0.29.3
|
2002-01-23 06:33:44 -06:00
|
|
|
|
|
|
|
TARFILE_NAME=$(NEON_NAME)
|
2010-03-18 06:22:45 -05:00
|
|
|
TARFILE_MD5=ba1015b59c112d44d7797b62fe7bee51
|
2009-02-19 01:29:28 -06:00
|
|
|
PATCH_FILES=neon.patch
|
2009-11-04 05:12:54 -06:00
|
|
|
|
2010-02-03 09:32:05 -06:00
|
|
|
.IF "$(GUI)"=="WNT"
|
2009-11-04 05:12:54 -06:00
|
|
|
PATCH_FILES+=neon_exports_win.patch
|
|
|
|
.ELSE
|
|
|
|
PATCH_FILES+=neon_exports_unix.patch
|
|
|
|
.ENDIF
|
|
|
|
|
2010-02-03 09:32:05 -06:00
|
|
|
ADDITIONAL_FILES=src$/makefile.mk src$/config.h
|
2009-11-27 06:48:22 -06:00
|
|
|
|
2002-01-23 06:33:44 -06:00
|
|
|
BUILD_DIR=src
|
2002-08-15 06:59:26 -05:00
|
|
|
BUILD_ACTION=dmake $(MFLAGS) $(CALLMACROS)
|
2002-01-23 06:33:44 -06:00
|
|
|
|
|
|
|
OUT2INC= \
|
2002-08-15 03:53:39 -05:00
|
|
|
$(BUILD_DIR)$/ne_207.h \
|
|
|
|
$(BUILD_DIR)$/ne_alloc.h \
|
|
|
|
$(BUILD_DIR)$/ne_auth.h \
|
|
|
|
$(BUILD_DIR)$/ne_basic.h \
|
2009-11-27 06:48:22 -06:00
|
|
|
$(BUILD_DIR)$/ne_compress.h \
|
2002-08-15 03:53:39 -05:00
|
|
|
$(BUILD_DIR)$/ne_defs.h \
|
|
|
|
$(BUILD_DIR)$/ne_locks.h \
|
|
|
|
$(BUILD_DIR)$/ne_props.h \
|
|
|
|
$(BUILD_DIR)$/ne_redirect.h \
|
|
|
|
$(BUILD_DIR)$/ne_request.h \
|
|
|
|
$(BUILD_DIR)$/ne_session.h \
|
|
|
|
$(BUILD_DIR)$/ne_socket.h \
|
2005-01-27 05:00:05 -06:00
|
|
|
$(BUILD_DIR)$/ne_ssl.h \
|
2002-08-15 03:53:39 -05:00
|
|
|
$(BUILD_DIR)$/ne_string.h \
|
|
|
|
$(BUILD_DIR)$/ne_uri.h \
|
|
|
|
$(BUILD_DIR)$/ne_utils.h \
|
2007-07-03 06:09:44 -05:00
|
|
|
$(BUILD_DIR)$/ne_xml.h \
|
|
|
|
$(BUILD_DIR)$/ne_xmlreq.h
|
2002-01-23 06:33:44 -06:00
|
|
|
|
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : set_ext.mk
|
|
|
|
.INCLUDE : target.mk
|
|
|
|
.INCLUDE : tg_ext.mk
|
|
|
|
|