Makefile revision 1605
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#
7e5b2100ea65658a7ec3795919b4ecd29a6f118aMark Andrews# CDDL HEADER START
7e5b2100ea65658a7ec3795919b4ecd29a6f118aMark Andrews#
72cbea34c935116215846c88a94a3c21ec8c1827Mark Andrews# The contents of this file are subject to the terms of the
4e3c7a22ea3219f680e09540ee12bb326fc2ccedMark Andrews# Common Development and Distribution License (the "License").
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrews# You may not use this file except in compliance with the License.
46e873c835bf7d9ec3e1097e0aceb8db5b1ae93aMark Andrews#
a3b428812703d22a605a9f882e71ed65f0ffdc65Mark Andrews# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
a9789e288ee11ae4315e27235c33bae5405bd7c4Mark Andrews# or http://www.opensolaris.org/os/licensing.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# See the License for the specific language governing permissions
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# and limitations under the License.
068a66979695c77359e7a9181bb3f831c965b21cMark Andrews#
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# When distributing Covered Code, include this CDDL HEADER in each
01bf5871f8861eb805dd8ca79bdb9b0b9e4e6a5eMark Andrews# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
c718d15a9a95054ee3c71540c02335426071fc6dMark Andrews# If applicable, add the following below this CDDL HEADER, with the
a9789e288ee11ae4315e27235c33bae5405bd7c4Mark Andrews# fields enclosed by brackets "[]" replaced with your own identifying
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# information: Portions Copyright [yyyy] [name of copyright owner]
c718d15a9a95054ee3c71540c02335426071fc6dMark Andrews#
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# CDDL HEADER END
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews#
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews
c718d15a9a95054ee3c71540c02335426071fc6dMark Andrews#
c718d15a9a95054ee3c71540c02335426071fc6dMark Andrews# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews#
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrews
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafssoninclude ../../make-rules/shared-macros.mk
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrews
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark AndrewsCOMPONENT_NAME= dejagnu
91216cff91b34c9ff6e846dc23f248219cafe660Andreas GustafssonCOMPONENT_VERSION= 1.5
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark AndrewsCOMPONENT_PROJECT_URL= http://www.gnu.org/software/dejagnu/
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian WellingtonCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
a3b428812703d22a605a9f882e71ed65f0ffdc65Mark AndrewsCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark AndrewsCOMPONENT_ARCHIVE_HASH= \
c718d15a9a95054ee3c71540c02335426071fc6dMark Andrews sha256:c8b45808357a6f3e32cd56d8b56a4fdf8a1d5f3818818045c2022993e0e8a3db
c6d4f781529d2f28693546b25b2967d44ec89e60Mark AndrewsCOMPONENT_ARCHIVE_URL= http://ftp.gnu.org/gnu/$(COMPONENT_NAME)/$(COMPONENT_ARCHIVE)
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark AndrewsCOMPONENT_BUGDB= utility/dejagnu
c718d15a9a95054ee3c71540c02335426071fc6dMark Andrews
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrewsinclude ../../make-rules/prep.mk
4038ab55037184d76153afd3c469aa8c85adf85dMark Andrewsinclude ../../make-rules/configure.mk
ed178efa9ab8f813538fce4ff603b81ded9f1799Mark Andrewsinclude ../../make-rules/ips.mk
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews
605bd686e437162b5ab65ac4e7c1be0bba1886ddMark AndrewsCOMPONENT_TEST_ENV += PATH="$(GNUBIN):$(PATH)"
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews
ede29aeb412c5448ab9a2028763ae08e7887ca74Mark AndrewsASLR_MODE = $(ASLR_ENABLE)
1eb1e1e838d2ea00b166c918bf50764a95826be8Mark Andrews
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# common targets
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrewsbuild: $(BUILD_64)
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafsson
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrewsinstall: $(INSTALL_64)
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrews
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafssontest: $(TEST_64)
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrews
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark AndrewsBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafsson
821d2613356f81e5bb5c107288d6d5cf35c2a1e8Mark Andrewsinclude ../../make-rules/depend.mk
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington