Makefile revision 127
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson#
7d32c065c7bb56f281651ae3dd2888f32ce4f1d9Bob Halley# CDDL HEADER START
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson#
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson# The contents of this file are subject to the terms of the
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson# Common Development and Distribution License (the "License").
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson# You may not use this file except in compliance with the License.
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson#
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson# or http://www.opensolaris.org/os/licensing.
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson# See the License for the specific language governing permissions
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson# and limitations under the License.
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson#
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson# When distributing Covered Code, include this CDDL HEADER in each
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson# If applicable, add the following below this CDDL HEADER, with the
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson# fields enclosed by brackets "[]" replaced with your own identifying
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson# information: Portions Copyright [yyyy] [name of copyright owner]
9c3531d72aeaad6c5f01efe6a1c82023e1379e4dDavid Lawrence#
9c3531d72aeaad6c5f01efe6a1c82023e1379e4dDavid Lawrence# CDDL HEADER END
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson#
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson
6028d1ce0380d0ba7f6c6ecd1ad20b31ddd1becbDavid Lawrence#
364a82f7c25b62967678027043425201a5e5171aBob Halley# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson#
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrence
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafssoninclude ../../make-rules/shared-macros.mk
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson
6fcfd0c35d3fd6aea3d36ad002b68e59ac62fdc7Brian WellingtonCOMPONENT_NAME= autoconf
6017f424ee3c02d7f22132c77576ea38542fa949Andreas GustafssonCOMPONENT_VERSION= 2.63
1adb2e87a20a480e640385609c9652dac04c7dffAndreas GustafssonCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
1adb2e87a20a480e640385609c9652dac04c7dffAndreas GustafssonCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
1adb2e87a20a480e640385609c9652dac04c7dffAndreas GustafssonCOMPONENT_ARCHIVE_HASH= sha1:d42eebd3d342925116c3cb942e9320d5803fcb1a
1adb2e87a20a480e640385609c9652dac04c7dffAndreas GustafssonCOMPONENT_ARCHIVE_URL= http://ftp.gnu.org/gnu/autoconf/$(COMPONENT_ARCHIVE)
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson
bb56f556f520621bcab33688c31d655953774adcAndreas Gustafssoninclude $(WS_TOP)/make-rules/prep.mk
bb56f556f520621bcab33688c31d655953774adcAndreas Gustafssoninclude $(WS_TOP)/make-rules/configure.mk
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafssoninclude $(WS_TOP)/make-rules/ips.mk
1adb2e87a20a480e640385609c9652dac04c7dffAndreas Gustafsson
1adb2e87a20a480e640385609c9652dac04c7dffAndreas GustafssonCONFIGURE_OPTIONS += --infodir=$(CONFIGURE_INFODIR)
1adb2e87a20a480e640385609c9652dac04c7dffAndreas GustafssonCONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
1adb2e87a20a480e640385609c9652dac04c7dffAndreas GustafssonCONFIGURE_OPTIONS += PERL="$(PERL)"
1adb2e87a20a480e640385609c9652dac04c7dffAndreas Gustafsson
1adb2e87a20a480e640385609c9652dac04c7dffAndreas Gustafssoninclude $(WS_TOP)/make-rules/shared-targets.mk
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson# common targets
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafssonbuild: $(BUILD_32)
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson
a672bfbee46c261729811405685db409bd7c9285Andreas Gustafssoninstall: $(INSTALL_32)
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid LawrenceBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrence
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrencetest: build
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrence @cd $(BUILD_DIR_32); $(MAKE) check
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrence
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrenceinclude $(WS_TOP)/make-rules/depend.mk
6017f424ee3c02d7f22132c77576ea38542fa949Andreas Gustafsson