Makefile revision 2899
376N/A#
376N/A# CDDL HEADER START
376N/A#
376N/A# The contents of this file are subject to the terms of the
376N/A# Common Development and Distribution License (the "License").
376N/A# You may not use this file except in compliance with the License.
376N/A#
376N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
376N/A# or http://www.opensolaris.org/os/licensing.
376N/A# See the License for the specific language governing permissions
376N/A# and limitations under the License.
376N/A#
376N/A# When distributing Covered Code, include this CDDL HEADER in each
376N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
376N/A# If applicable, add the following below this CDDL HEADER, with the
376N/A# fields enclosed by brackets "[]" replaced with your own identifying
376N/A# information: Portions Copyright [yyyy] [name of copyright owner]
376N/A#
376N/A# CDDL HEADER END
376N/A
376N/A#
2818N/A# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
376N/A#
376N/A
376N/Ainclude ../../make-rules/shared-macros.mk
376N/A
376N/ACOMPONENT_NAME= rdiff-backup
828N/ACOMPONENT_VERSION= 1.3.3
376N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
376N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
844N/ACOMPONENT_ARCHIVE_HASH= \
844N/A sha256:ee030ce638df0eb1047cf72578e0de15d9a3ee9ab24da2dc0023e2978be30c06
376N/ACOMPONENT_ARCHIVE_URL= http://download.savannah.gnu.org/releases/$(COMPONENT_NAME)/$(COMPONENT_ARCHIVE)
376N/ACOMPONENT_PROJECT_URL= http://www.nongnu.org/rdiff-backup/
1258N/ACOMPONENT_BUGDB= utility/rdiff-backup
376N/A
2899N/ATPNO= 9055
2899N/A
2818N/A# Syntax issues: not Python 3 ready.
2818N/APYTHON_VERSIONS= 2.7 2.6
2818N/A
376N/Ainclude $(WS_TOP)/make-rules/prep.mk
376N/Ainclude $(WS_TOP)/make-rules/ips.mk
376N/Ainclude $(WS_TOP)/make-rules/setup.py.mk
376N/A
1714N/A# Needed to get around a broken /usr/lib/python2.7/config/Makefile
1714N/A# See CR #16837431.
1714N/ALD=$(CC)
1714N/ALDSHARED=$(CC) -G $(CC_BITS)
1714N/ACFLAGS= $(CC_BITS)
1714N/ACPPFLAGS=
1714N/ALDFLAGS=
1714N/APYTHON_ENV += CC="$(CC)"
1714N/APYTHON_ENV += LDSHARED="$(LDSHARED)"
1714N/APYTHON_ENV += LD="$(LD)"
1714N/APYTHON_ENV += CFLAGS="$(CFLAGS)"
1714N/APYTHON_ENV += CPPFLAGS="$(CPPFLAGS)"
1714N/APYTHON_ENV += LDFLAGS="$(LDFLAGS)"
1714N/ACOMPONENT_INSTALL_ENV += $(PYTHON_ENV)
727N/A
1938N/AASLR_MODE = $(ASLR_NOT_APPLICABLE)
1938N/A
376N/A# common targets
376N/A
1714N/Abuild: $(BUILD_64)
376N/A
1714N/Ainstall: $(INSTALL_64)
376N/A
376N/Atest: $(NO_TESTS)
376N/A
376N/ABUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
376N/A
376N/Ainclude $(WS_TOP)/make-rules/depend.mk