Makefile revision 4337
ae115bc77f6fcde83175c75b4206dc2e50747966mrj#
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# CDDL HEADER START
ae115bc77f6fcde83175c75b4206dc2e50747966mrj#
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# The contents of this file are subject to the terms of the
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# Common Development and Distribution License (the "License").
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# You may not use this file except in compliance with the License.
ae115bc77f6fcde83175c75b4206dc2e50747966mrj#
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# or http://www.opensolaris.org/os/licensing.
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# See the License for the specific language governing permissions
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# and limitations under the License.
ae115bc77f6fcde83175c75b4206dc2e50747966mrj#
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# When distributing Covered Code, include this CDDL HEADER in each
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# If applicable, add the following below this CDDL HEADER, with the
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# fields enclosed by brackets "[]" replaced with your own identifying
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# information: Portions Copyright [yyyy] [name of copyright owner]
ae115bc77f6fcde83175c75b4206dc2e50747966mrj#
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# CDDL HEADER END
ae115bc77f6fcde83175c75b4206dc2e50747966mrj#
ae115bc77f6fcde83175c75b4206dc2e50747966mrj
eb2bd6624e082e367f66e2b0fdfe54c9b5d493afvikram#
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
ae115bc77f6fcde83175c75b4206dc2e50747966mrj#
ae115bc77f6fcde83175c75b4206dc2e50747966mrj
ae115bc77f6fcde83175c75b4206dc2e50747966mrjinclude ../../../make-rules/shared-macros.mk
ae115bc77f6fcde83175c75b4206dc2e50747966mrj
ae115bc77f6fcde83175c75b4206dc2e50747966mrjCOMPONENT_NAME= django_compressor
ae115bc77f6fcde83175c75b4206dc2e50747966mrjCOMPONENT_VERSION= 1.4
ae115bc77f6fcde83175c75b4206dc2e50747966mrjCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
ae115bc77f6fcde83175c75b4206dc2e50747966mrjCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
ae115bc77f6fcde83175c75b4206dc2e50747966mrjCOMPONENT_ARCHIVE_HASH= \
ae115bc77f6fcde83175c75b4206dc2e50747966mrj sha256:b26034230efcef7d60e5267890eda656dfc49c567f27125d907eee4fe7f9a6ec
ae115bc77f6fcde83175c75b4206dc2e50747966mrjCOMPONENT_ARCHIVE_URL= $(call pypi_url)
ae115bc77f6fcde83175c75b4206dc2e50747966mrjCOMPONENT_PROJECT_URL= http://django-compressor.readthedocs.org
ae115bc77f6fcde83175c75b4206dc2e50747966mrjCOMPONENT_BUGDB= python-mod/django-cmpress
ae115bc77f6fcde83175c75b4206dc2e50747966mrj
ae115bc77f6fcde83175c75b4206dc2e50747966mrjTPNO= 21719
ae115bc77f6fcde83175c75b4206dc2e50747966mrj
ae115bc77f6fcde83175c75b4206dc2e50747966mrj# Depends on django, which is not Python 3 ready.
ae115bc77f6fcde83175c75b4206dc2e50747966mrjPYTHON_VERSIONS= 2.7 2.6
ae115bc77f6fcde83175c75b4206dc2e50747966mrj
ae115bc77f6fcde83175c75b4206dc2e50747966mrjinclude $(WS_MAKE_RULES)/prep.mk
ae115bc77f6fcde83175c75b4206dc2e50747966mrjinclude $(WS_MAKE_RULES)/setup.py.mk
ae115bc77f6fcde83175c75b4206dc2e50747966mrjinclude $(WS_MAKE_RULES)/ips.mk
ae115bc77f6fcde83175c75b4206dc2e50747966mrj
843e19887f64dde75055cf8842fc4db2171eff45johnlevASLR_MODE = $(ASLR_NOT_APPLICABLE)
eb2bd6624e082e367f66e2b0fdfe54c9b5d493afvikram
eb2bd6624e082e367f66e2b0fdfe54c9b5d493afvikram# common targets
eb2bd6624e082e367f66e2b0fdfe54c9b5d493afvikrambuild: $(BUILD_NO_ARCH)
eb2bd6624e082e367f66e2b0fdfe54c9b5d493afvikram
eb2bd6624e082e367f66e2b0fdfe54c9b5d493afvikraminstall: $(INSTALL_NO_ARCH)
eb2bd6624e082e367f66e2b0fdfe54c9b5d493afvikram
eb2bd6624e082e367f66e2b0fdfe54c9b5d493afvikram# unittests require django-discover-runner which is not integrated
eb2bd6624e082e367f66e2b0fdfe54c9b5d493afvikramtest: $(NO_TESTS)
eb2bd6624e082e367f66e2b0fdfe54c9b5d493afvikram
eb2bd6624e082e367f66e2b0fdfe54c9b5d493afvikramsystem-test: $(NO_TESTS)
eb2bd6624e082e367f66e2b0fdfe54c9b5d493afvikram