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