Makefile revision 5462
fa9e4066f08beec538e775443c5be79dd423fcabahrens#
fa9e4066f08beec538e775443c5be79dd423fcabahrens# CDDL HEADER START
fa9e4066f08beec538e775443c5be79dd423fcabahrens#
fa9e4066f08beec538e775443c5be79dd423fcabahrens# The contents of this file are subject to the terms of the
ea8dc4b6d2251b437950c0056bc626b311c73c27eschrock# Common Development and Distribution License (the "License").
ea8dc4b6d2251b437950c0056bc626b311c73c27eschrock# You may not use this file except in compliance with the License.
fa9e4066f08beec538e775443c5be79dd423fcabahrens#
fa9e4066f08beec538e775443c5be79dd423fcabahrens# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
fa9e4066f08beec538e775443c5be79dd423fcabahrens# or http://www.opensolaris.org/os/licensing.
fa9e4066f08beec538e775443c5be79dd423fcabahrens# See the License for the specific language governing permissions
fa9e4066f08beec538e775443c5be79dd423fcabahrens# and limitations under the License.
fa9e4066f08beec538e775443c5be79dd423fcabahrens#
fa9e4066f08beec538e775443c5be79dd423fcabahrens# When distributing Covered Code, include this CDDL HEADER in each
fa9e4066f08beec538e775443c5be79dd423fcabahrens# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
fa9e4066f08beec538e775443c5be79dd423fcabahrens# If applicable, add the following below this CDDL HEADER, with the
fa9e4066f08beec538e775443c5be79dd423fcabahrens# fields enclosed by brackets "[]" replaced with your own identifying
fa9e4066f08beec538e775443c5be79dd423fcabahrens# information: Portions Copyright [yyyy] [name of copyright owner]
fa9e4066f08beec538e775443c5be79dd423fcabahrens#
fa9e4066f08beec538e775443c5be79dd423fcabahrens# CDDL HEADER END
fa9e4066f08beec538e775443c5be79dd423fcabahrens#
fa9e4066f08beec538e775443c5be79dd423fcabahrens
06e0070d70ba2ee95f5aa2645423eb2cf1546788Mark Shellenbaum#
edf345e6b8342e8627ec20ce821a977a62cee19dMatthew Ahrens# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
aad02571bc59671aa3103bb070ae365f531b0b62Saso Kiselkov#
fa9e4066f08beec538e775443c5be79dd423fcabahrens
fa9e4066f08beec538e775443c5be79dd423fcabahrensinclude ../../../../make-rules/shared-macros.mk
55da60b91d96984f12de050ce428373ea25c7f35Mark J Musante
55da60b91d96984f12de050ce428373ea25c7f35Mark J MusanteCOMPONENT_NAME= openstack-ironic
fa9e4066f08beec538e775443c5be79dd423fcabahrensCOMPONENT_VERSION= 6.1.0
fa9e4066f08beec538e775443c5be79dd423fcabahrensCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
fa9e4066f08beec538e775443c5be79dd423fcabahrensCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
fa9e4066f08beec538e775443c5be79dd423fcabahrensCOMPONENT_ARCHIVE_HASH= \
c717a56157ae0e6fca6a1e3689ae1edc385716a3maybee sha256:f600fe731d840eaad423b3087ecef28ee62ea4b0671574611e5de4087f1b42a2
fa9e4066f08beec538e775443c5be79dd423fcabahrensCOMPONENT_ARCHIVE_URL= http://forgeapi.puppetlabs.com/v3/files/$(COMPONENT_ARCHIVE)
fa9e4066f08beec538e775443c5be79dd423fcabahrensCOMPONENT_PROJECT_URL= http://www.openstack.org/
fa9e4066f08beec538e775443c5be79dd423fcabahrensCOMPONENT_BUGDB= service/ironic
fa9e4066f08beec538e775443c5be79dd423fcabahrens
fa9e4066f08beec538e775443c5be79dd423fcabahrensTPNO= 25373
0a586cea3ceec7e5e50e7e54c745082a7a333ac2Mark Shellenbaum
fa9e4066f08beec538e775443c5be79dd423fcabahrensinclude $(WS_MAKE_RULES)/prep.mk
fa9e4066f08beec538e775443c5be79dd423fcabahrensinclude $(WS_MAKE_RULES)/puppetmodule.mk
fa9e4066f08beec538e775443c5be79dd423fcabahrensinclude $(WS_MAKE_RULES)/ips.mk
fa9e4066f08beec538e775443c5be79dd423fcabahrens
fa9e4066f08beec538e775443c5be79dd423fcabahrensMODULE_NAME = ironic
744947dc83c634d985ed3ad79ac9c5e28d1865fdTom Erickson
744947dc83c634d985ed3ad79ac9c5e28d1865fdTom EricksonASLR_MODE = $(ASLR_NOT_APPLICABLE)
3b2aab18808792cbd248a12f1edf139b89833c13Matthew Ahrens
fa9e4066f08beec538e775443c5be79dd423fcabahrens# common targets
fa9e4066f08beec538e775443c5be79dd423fcabahrensbuild: $(BUILD_NO_ARCH)
fa9e4066f08beec538e775443c5be79dd423fcabahrens
148434217c040ea38dc844384f6ba68d9b325906Matthew Ahrensinstall: $(INSTALL_NO_ARCH)
148434217c040ea38dc844384f6ba68d9b325906Matthew Ahrens
148434217c040ea38dc844384f6ba68d9b325906Matthew Ahrenstest: $(NO_TESTS)
3f9d6ad73e45c6823b409f93b0c8d4f62861d2d5Lin Ling