Makefile revision 1370
0N/A###############################################################################
2362N/A#
0N/A# imake - Legacy X11 build configuration and makefile generation tool
0N/A#
0N/A# Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
0N/A#
2362N/A# Permission is hereby granted, free of charge, to any person obtaining a
0N/A# copy of this software and associated documentation files (the "Software"),
2362N/A# to deal in the Software without restriction, including without limitation
0N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
0N/A# and/or sell copies of the Software, and to permit persons to whom the
0N/A# Software is furnished to do so, subject to the following conditions:
0N/A#
0N/A# The above copyright notice and this permission notice (including the next
0N/A# paragraph) shall be included in all copies or substantial portions of the
0N/A# Software.
0N/A#
0N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
0N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
0N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
2362N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2362N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2362N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
0N/A# DEALINGS IN THE SOFTWARE.
0N/A#
0N/A#
0N/A
0N/A# Package name used in tarballs
0N/AMODULE_NAME=imake
0N/A
0N/A# Package metadata
0N/AMODULE_DESC = the imake makefile generation tool
4123N/A
4123N/A# Version number (used in path names)
0N/AMODULE_VERSION=1.0.6
0N/A
0N/A# Checksums for upstream tarball
0N/ATARBALL_MD5 = d5058b1317a85bedc1dc40c7e85c8d26
0N/ATARBALL_SHA1 = a54c025d7ac9894b6bc919d13454c6adb12ae140
0N/ATARBALL_SHA256= fa8983fdb0a72ba8482d1d2683967fb45c29edd7149b25f619f97ea5a599069d
0N/A
0N/A# Patches to apply to source after unpacking, in order
0N/ASOURCE_PATCHES=
0N/A
0N/A# Man pages to apply Sun footer to & attributes to list
0N/ASUNTOUCHED_MANPAGES=*.man
0N/AMODULE_STABILITY=Uncommitted
0N/A
0N/A# Build 32-bit so that the default flags it sets in generated Makefiles are
0N/A# 32-bit, requiring users to request 64-bit flags when they want them.
0N/ABUILD_TYPES_SET=yes
0N/ABUILD_TYPES=32
0N/A
0N/A# Additional flags to pass to configure script
0N/AMODULE_CONFIG_OPTS = --enable-mkdirhier \
0N/A --disable-ccmakedep --disable-cleanlinks --disable-makeg \
0N/A --disable-mergelib --disable-mkhtmlindex --disable-revpath
0N/A
0N/A# Prefer cpp from /usr/lib
0N/AMODULE_CONFIG_OPTS += RAWCPP=/usr/lib/cpp
0N/A
0N/A# Compatibility links from /usr/X11/bin to /usr/bin
0N/AMODULE_X11_BINCOMPAT_LINKS = imake xmkmf mkdirhier
0N/A
0N/A# Workaround Parfait 0.5.0.1 bug 14139420
0N/AMODULE_BUILD_ENV += PARFAIT_CLANG=0
0N/A
0N/A### Include common rulesets
0N/Ainclude ../Makefile.inc
0N/A
0N/A