Makefile revision 2850
1633838b8255282d10af15c5c84cee5a51466712Bob Halley#
9a14f870ddc0108402d2daa7a7ff84b6e20f08b4Automatic Updater# CDDL HEADER START
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews#
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence# The contents of this file are subject to the terms of the
ec5347e2c775f027573ce5648b910361aa926c01Automatic Updater# Common Development and Distribution License (the "License").
1633838b8255282d10af15c5c84cee5a51466712Bob Halley# You may not use this file except in compliance with the License.
1633838b8255282d10af15c5c84cee5a51466712Bob Halley#
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# or http://www.opensolaris.org/os/licensing.
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# See the License for the specific language governing permissions
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# and limitations under the License.
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews#
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# When distributing Covered Code, include this CDDL HEADER in each
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# If applicable, add the following below this CDDL HEADER, with the
1633838b8255282d10af15c5c84cee5a51466712Bob Halley# fields enclosed by brackets "[]" replaced with your own identifying
138d22b316c7cd10eaa9df2ee0e3ec712a077153Bob Halley# information: Portions Copyright [yyyy] [name of copyright owner]
307d2084502eddc7ce921e5ce439aec3531d90e0Tatuya JINMEI 神明達哉#
9c3531d72aeaad6c5f01efe6a1c82023e1379e4dDavid Lawrence# CDDL HEADER END
c92ba071011bbc09e7146729606fd9e89a9be02cBob Halley#
c92ba071011bbc09e7146729606fd9e89a9be02cBob Halley# Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
138d22b316c7cd10eaa9df2ee0e3ec712a077153Bob Halley#
b929562c6c1afec4ffa91fef6355188c8129449aBob Halleyinclude ../../../make-rules/shared-macros.mk
b929562c6c1afec4ffa91fef6355188c8129449aBob Halley
b929562c6c1afec4ffa91fef6355188c8129449aBob HalleyCOMPONENT_NAME= iso8601
b929562c6c1afec4ffa91fef6355188c8129449aBob HalleyCOMPONENT_VERSION= 0.1.10
29747dfe5e073a299b3681e01f5c55540f8bfed7Mark AndrewsCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
ab023a65562e62b85a824509d829b6fad87e00b1Rob AusteinCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
9a14f870ddc0108402d2daa7a7ff84b6e20f08b4Automatic UpdaterCOMPONENT_ARCHIVE_HASH= \
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein sha256:e712ff3a18604833f5073e836aad795b21170b19bbef70947c441ed89d0ac0e1
ab023a65562e62b85a824509d829b6fad87e00b1Rob AusteinCOMPONENT_ARCHIVE_URL= $(call pypi_url)
9b27701a8d38af8c6fbdb3b0ec5efa191b56fbdaBob HalleyCOMPONENT_PROJECT_URL= http://code.google.com/p/pyiso8601/
9b27701a8d38af8c6fbdb3b0ec5efa191b56fbdaBob HalleyCOMPONENT_BUGDB= python-mod/iso8601
9b27701a8d38af8c6fbdb3b0ec5efa191b56fbdaBob Halley
b929562c6c1afec4ffa91fef6355188c8129449aBob Halleyinclude $(WS_TOP)/make-rules/prep.mk
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austeininclude $(WS_TOP)/make-rules/setup.py.mk
b929562c6c1afec4ffa91fef6355188c8129449aBob Halleyinclude $(WS_TOP)/make-rules/ips.mk
b929562c6c1afec4ffa91fef6355188c8129449aBob Halley
b929562c6c1afec4ffa91fef6355188c8129449aBob HalleyASLR_MODE = $(ASLR_NOT_APPLICABLE)
b929562c6c1afec4ffa91fef6355188c8129449aBob Halley
b929562c6c1afec4ffa91fef6355188c8129449aBob HalleyCOMPONENT_TEST_DIR = $(SOURCE_DIR)/$(COMPONENT_NAME)
ab023a65562e62b85a824509d829b6fad87e00b1Rob AusteinCOMPONENT_TEST_ARGS = test_iso8601.py
b929562c6c1afec4ffa91fef6355188c8129449aBob Halley
b929562c6c1afec4ffa91fef6355188c8129449aBob Halley# common targets
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austeinbuild: $(BUILD_NO_ARCH)
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein
b929562c6c1afec4ffa91fef6355188c8129449aBob Halleyinstall: $(INSTALL_NO_ARCH)
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein
b929562c6c1afec4ffa91fef6355188c8129449aBob Halleytest: $(TEST_NO_ARCH)
b929562c6c1afec4ffa91fef6355188c8129449aBob Halley
ab023a65562e62b85a824509d829b6fad87e00b1Rob AusteinBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
b929562c6c1afec4ffa91fef6355188c8129449aBob Halley
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austeininclude $(WS_TOP)/make-rules/depend.mk
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein