Makefile revision 1425
116N/A###############################################################################
116N/A#
116N/A# xf86-input-synaptics driver for Synaptics & compatible touchpads
116N/A#
116N/A# Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
116N/A#
116N/A# Permission is hereby granted, free of charge, to any person obtaining a
116N/A# copy of this software and associated documentation files (the "Software"),
116N/A# to deal in the Software without restriction, including without limitation
116N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
116N/A# and/or sell copies of the Software, and to permit persons to whom the
116N/A# Software is furnished to do so, subject to the following conditions:
116N/A#
116N/A# The above copyright notice and this permission notice (including the next
116N/A# paragraph) shall be included in all copies or substantial portions of the
116N/A# Software.
116N/A#
116N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
116N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
116N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
116N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
116N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
844N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
116N/A# DEALINGS IN THE SOFTWARE.
116N/A#
116N/A#
116N/A
116N/A# Package name used in tarballs
1137N/AMODULE_NAME=xf86-input-synaptics
618N/A
116N/A# Version number (used in path names)
116N/AMODULE_VERSION=1.7.1
844N/A
1137N/A# Checksums for upstream tarball
116N/ATARBALL_MD5 = 6505de717972b6a24b8eb13e69eb996c
116N/ATARBALL_SHA1 = 85018b51dfa0c2dcf5c257cf283298836273700d
116N/ATARBALL_SHA256= db5825660e1fb23190697f609bf75d4450fe707344a14298e1c9b47039bbb58e
116N/A
116N/A# Patches to apply to source after unpacking, in order
116N/ASOURCE_PATCHES=
116N/A
116N/A# Man pages to apply Sun footer to & attributes to list
116N/ASUNTOUCHED_MANPAGES=man/*.man
116N/AMODULE_STABILITY=Volatile
116N/A
116N/A# Extra flags to pass to configure script
116N/AMODULE_CONFIG_OPTS= --bindir=$(X11_SERVERLIBS_DIR)
116N/A
1137N/A# Extra flags to link with
116N/AMODULE_LD_OPTIONS = $(ZDISCARD_UNUSED_DEP) -lm
116N/A
116N/A# Extra install rules
1137N/AMODULE_ADD_INSTALL_TARGETS = install_fdi
1137N/A
1137N/A# Fix path for installing headers in proto area
1137N/AMODULE_INSTALL_MAKEFLAGS = sdkdir='$(XORG_SDK_INCLUDES_DIR)'
1137N/A
151N/A# Install xorg-synaptics.pc to /usr/share since it defines the architecture
151N/A# independent header files in /usr/include and not any library flags
116N/AMODULE_PKGCONFIG_DIR=$(PKGCONFIG_DIR_SHARE)
151N/AMODULE_PKGCONFIG_DIR_SET=yes
151N/A
151N/Ainclude ../Makefile.inc
116N/A
181N/AFDI_DIR=$(PROTODIR)/etc/hal/fdi/policy/10osvendor
181N/A
116N/A$(FDI_DIR):
116N/A mkdir -p $(FDI_DIR)
116N/A
181N/Ainstall_fdi: $(SOURCE_TARGETS) $(FDI_DIR)
116N/A $(INSTALL_SCRIPT) -m 0444 $(SOURCE_DIR)/conf/11-x11-synaptics.fdi \
181N/A $(FDI_DIR)/
116N/A