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.
|
|
|
|
#
|
|
|
|
# Copyright 2008 by Sun Microsystems, Inc.
|
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
|
|
|
# $RCSfile: makefile.mk,v $
|
2002-01-23 06:33:44 -06:00
|
|
|
#
|
2008-04-11 01:16:07 -05:00
|
|
|
# $Revision: 1.11 $
|
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
|
|
|
|
|
2009-02-19 03:43:16 -06:00
|
|
|
NEON_NAME=neon-0.28.2
|
2002-01-23 06:33:44 -06:00
|
|
|
|
|
|
|
TARFILE_NAME=$(NEON_NAME)
|
2009-02-19 01:29:28 -06:00
|
|
|
PATCH_FILES=neon.patch
|
2009-07-27 10:26:29 -05:00
|
|
|
ADDITIONAL_FILES=src$/makefile.mk src$/config.h src$/ne_ntlm.h src$/ne_ntlm.c
|
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 \
|
|
|
|
$(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
|
|
|
|
|