Makefile revision 919
155N/A###############################################################################
155N/A#
155N/A# xf86-input-vmmouse Makefile
155N/A#
155N/A# Copyright 2010 Sun Microsystems, Inc. All rights reserved.
155N/A# Use is subject to license terms.
155N/A#
155N/A# Permission is hereby granted, free of charge, to any person obtaining a
155N/A# copy of this software and associated documentation files (the "Software"),
155N/A# to deal in the Software without restriction, including without limitation
155N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
155N/A# and/or sell copies of the Software, and to permit persons to whom the
155N/A# Software is furnished to do so, subject to the following conditions:
155N/A#
155N/A# The above copyright notice and this permission notice (including the next
155N/A# paragraph) shall be included in all copies or substantial portions of the
155N/A# Software.
155N/A#
155N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
155N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
155N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
155N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
155N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
155N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
277N/A# DEALINGS IN THE SOFTWARE.
277N/A#
277N/A#
277N/A
155N/A# Package name used in tarballs
155N/AMODULE_NAME=xf86-input-vmmouse
155N/A
155N/A# Version number (used in path names)
155N/AMODULE_VERSION=12.6.5
155N/A
155N/A# Checksums for upstream tarball
155N/ATARBALL_MD5 = ce78e0135b5e34338a1ea98afb933120
155N/ATARBALL_SHA1 = bf2f1031ccc0096f388272ce93b75572d24548be
155N/A
155N/A# Patches to apply to source after unpacking, in order
155N/ASOURCE_PATCHES = xf86LoaderReqSymLists.patch,-p1
155N/A
215N/A# vmmouse_client code won't build with Sun compiler
215N/AMODULE_COMPILER=gcc
215N/AMODULE_COMPILER_SET=yes
215N/A
215N/A# Man pages to apply Sun footer to & attributes to list
215N/ASUNTOUCHED_MANPAGES=man/*.man
215N/ASUN_PACKAGE=SUNWxorg-server
215N/AMODULE_STABILITY=Volatile
215N/A
215N/A# Extra flags to pass to configure script
215N/A# - need to set install locations for HAL config file & probe util/script
215N/AMODULE_CONFIG_OPTS= \
215N/A --with-hal-bin-dir=/usr/sbin \
215N/A --with-hal-callouts-dir=/usr/lib/hal$(ARCHLIBSUBDIR) \
215N/A --with-hal-fdi-dir=/etc/hal/fdi/policy/10osvendor$(ARCHLIBSUBDIR) \
155N/A --bindir=$(X11_SERVERLIBS_DIR)$(ARCHLIBSUBDIR)
155N/A
155N/A# Libraries/modules to link with
155N/AMODULE_LD_OPTIONS= mouse_drv.so
155N/AMODULE_ADD_SOURCE_TARGETS= source_mouse_drv_links
155N/A
155N/Ainclude ../Makefile.inc
155N/A
155N/Asource_mouse_drv_links: default_source
155N/A ln -s $(PROTODIR)$(X11_SERVERMODS_DIR)$(SERVERMOD_subdir)/input/mouse_drv.so $(SOURCE_DIR)/src/mouse_drv.so
155N/A ln -s $(PROTODIR)$(X11_SERVERMODS_DIR)$(SERVERMOD_subdir)/input/mouse_drv.so $(SOURCE_DIR)/tools/mouse_drv.so
155N/A
156N/A