Makefile revision 1610
4924N/A###############################################################################
4924N/A#
5751N/A# xlock - manually activated screen lock program
5751N/A#
4924N/A# Copyright (c) 2008, 2016, Oracle and/or its affiliates. All rights reserved.
4924N/A#
4924N/A# Permission is hereby granted, free of charge, to any person obtaining a
4924N/A# copy of this software and associated documentation files (the "Software"),
4924N/A# to deal in the Software without restriction, including without limitation
4924N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
4924N/A# and/or sell copies of the Software, and to permit persons to whom the
4924N/A# Software is furnished to do so, subject to the following conditions:
4924N/A#
4924N/A# The above copyright notice and this permission notice (including the next
4924N/A# paragraph) shall be included in all copies or substantial portions of the
4924N/A# Software.
4924N/A#
4924N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4924N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
4924N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
4924N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
4924N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
4924N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
4924N/A# DEALINGS IN THE SOFTWARE.
4924N/A#
4924N/A#
4924N/A
4924N/A# Package name used in tarballs
4924N/AMODULE_NAME=xlock
4924N/A
4924N/A# Package metadata
4924N/AMODULE_DESC = the xlock screen lock program
4924N/A
4924N/A# Dates to show in Oracle copyright notice in pkg license file
4924N/A# Earliest & latest of the copyrights in the Oracle files in this pkg
4924N/AORACLE_COPYRIGHT_YEARS = 1988, 2015
4924N/AORACLE_TPNO = 9808
4924N/A
4924N/A# No upstream sources for these files, since they're Solaris-specific
4924N/AMODULE_VERSION=src
4924N/ASOURCE_TARBALL_NAME=NONE
4924N/ASOURCE_TARBALL_NAME_SET=yes
4924N/AADDITIONAL_SOURCE_DIR=sun-src
4924N/A
4924N/A# Man pages to apply Sun footer to & attributes to list
4924N/ASUNTOUCHED_MANPAGES= xlock.1
4924N/AMODULE_STABILITY=Committed
4924N/A
4924N/A# No configure script to run, but need to make build dirs
4924N/ACONFIGURE_TARGETS = $(BUILD_DIR)
4924N/ACONFIGURE_TARGETS_SET=yes
4924N/A
4924N/A# Since we don't have a configure script, pass configure flags to make
4924N/A# and pass path to $(SOURCE_DIR) for makefiles & source files
4924N/AREL_SOURCE_DIR = ../$(SOURCE_DIR)
4924N/AMODULE_MAKEFLAGS = VPATH=$(REL_SOURCE_DIR) -f $(REL_SOURCE_DIR)/Makefile
4924N/AMODULE_BUILD_ENV = $(CONFIG_ENV) PREFIX=$(MODULE_PREFIX)
4924N/AMODULE_INSTALL_MAKEFLAGS = \
4924N/A bindir=$(MODULE_BIN_DIR) datadir=$(MODULE_DATA_DIR) mandir=$(MODULE_MAN_DIR)
4924N/A
4924N/A# Compatibility links from /usr/X11/bin to /usr/bin
4924N/AMODULE_X11_BINCOMPAT_LINKS = xlock
4924N/A
4924N/Ainclude ../Makefile.inc
4924N/A
4924N/Alint: $(BUILD_DEPS)
4924N/A $(DEFAULT_BUILD_COMMAND:@DIR@=$(BUILD_DIR)) lint
4924N/A