Makefile revision 2337
148N/A#
148N/A# CDDL HEADER START
148N/A#
148N/A# The contents of this file are subject to the terms of the
148N/A# Common Development and Distribution License (the "License").
148N/A# You may not use this file except in compliance with the License.
148N/A#
148N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
148N/A# or http://www.opensolaris.org/os/licensing.
148N/A# See the License for the specific language governing permissions
148N/A# and limitations under the License.
148N/A#
148N/A# When distributing Covered Code, include this CDDL HEADER in each
148N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
148N/A# If applicable, add the following below this CDDL HEADER, with the
148N/A# fields enclosed by brackets "[]" replaced with your own identifying
148N/A# information: Portions Copyright [yyyy] [name of copyright owner]
148N/A#
148N/A# CDDL HEADER END
148N/A#
148N/A
148N/A#
690N/A# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
148N/A#
148N/A
148N/Ainclude ../../make-rules/shared-macros.mk
148N/A
148N/ACOMPONENT_NAME= tmux
148N/ACOMPONENT_VERSION= 1.8
618N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
148N/ACOMPONENT_PROJECT_URL= http://tmux.sourceforge.net
148N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
844N/ACOMPONENT_ARCHIVE_HASH= \
844N/A sha256:2565b65f80bf1d683032c75704a9619e6734fd21586c72768ef27427ba9e23e5
148N/ACOMPONENT_ARCHIVE_URL= http://sourceforge.net/projects/tmux/files/tmux/$(COMPONENT_SRC)/$(COMPONENT_ARCHIVE)
148N/ACOMPONENT_BUGDB= utility/tmux
148N/A
148N/Ainclude ../../make-rules/prep.mk
148N/Ainclude ../../make-rules/configure.mk
181N/Ainclude ../../make-rules/ips.mk
148N/A
181N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
148N/ACONFIGURE_OPTIONS += CXXFLAGS="$(CXXFLAGS)"
148N/A
148N/A# nroff does not work with -mandoc using groff
148N/AMANDIR_PREFORMATED= $(PROTO_DIR)/usr/share/man/cat1
148N/ACOMPONENT_POST_INSTALL_ACTION += \
148N/A /usr/bin/groff -Tascii -mandoc $(SOURCE_DIR)/tmux.1>tmux.1.mod ; \
148N/A mkdir -p $(MANDIR_PREFORMATED) ; \
148N/A $(MV) tmux.1.mod $(MANDIR_PREFORMATED)/tmux.1
148N/A
148N/A# common targets
148N/Abuild: $(BUILD_64)
148N/A
148N/Ainstall: $(INSTALL_64)
181N/A
181N/Atest: $(NO_TESTS)
148N/A
148N/ABUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
148N/A
690N/Ainclude ../../make-rules/depend.mk
690N/A