Makefile revision 1447
142N/A###############################################################################
142N/A#
142N/A# xf86-input-vmmouse Makefile
142N/A#
142N/A# Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
142N/A#
142N/A# Permission is hereby granted, free of charge, to any person obtaining a
142N/A# copy of this software and associated documentation files (the "Software"),
142N/A# to deal in the Software without restriction, including without limitation
142N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
142N/A# and/or sell copies of the Software, and to permit persons to whom the
142N/A# Software is furnished to do so, subject to the following conditions:
142N/A#
142N/A# The above copyright notice and this permission notice (including the next
142N/A# paragraph) shall be included in all copies or substantial portions of the
142N/A# Software.
142N/A#
142N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
142N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
142N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
142N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
142N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
142N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
142N/A# DEALINGS IN THE SOFTWARE.
142N/A#
142N/A#
142N/A
142N/A# Package name used in tarballs
479N/AMODULE_NAME=xf86-input-vmmouse
142N/A
142N/A# Version number (used in path names)
479N/AMODULE_VERSION=13.0.0
479N/A
142N/A# Checksums for upstream tarball
142N/ATARBALL_MD5 = 34f9f64ee6a1a51fc8266a9af24e1e07
142N/ATARBALL_SHA1 = 0fa67d2ca9b2b26d32b93cc030fc3ea28964fe81
142N/ATARBALL_SHA256= 04cfb60366008d4db815c550d8fb8d0a4270c75fa7a20fa3bddc9ecbd355612c
142N/A
479N/A# Patches to apply to source after unpacking, in order
479N/ASOURCE_PATCHES =
142N/A
288N/A# vmmouse_client code won't build with Sun compiler
288N/AMODULE_COMPILER=gcc
142N/AMODULE_COMPILER_SET=yes
142N/A
142N/A# Need to use GNU Make to build due to Sun make bug 6474905
288N/AMODULE_MAKE=$(GNUMAKE)
142N/AMODULE_MAKE_SET=yes
142N/A
288N/A# Man pages to apply Sun footer to & attributes to list
288N/ASUNTOUCHED_MANPAGES=man/*.man
142N/AMODULE_STABILITY=Volatile
142N/A
142N/A# Extra flags to pass to configure script
288N/A# - need to set install locations for HAL config file & probe util/script
288N/AMODULE_CONFIG_OPTS= \
142N/A --with-hal-bin-dir=/usr/sbin \
142N/A --with-hal-callouts-dir=/usr/lib/hal \
142N/A --with-hal-fdi-dir=/etc/hal/fdi/policy/10osvendor \
142N/A --bindir=$(X11_SERVERLIBS_DIR)
142N/A
142N/Ainclude ../Makefile.inc
288N/A