Makefile.am revision 659607e0
1659607e0Smrg# Copyright 2005 Adam Jackson. 2659607e0Smrg# 3659607e0Smrg# Permission is hereby granted, free of charge, to any person obtaining a 4659607e0Smrg# copy of this software and associated documentation files (the "Software"), 5659607e0Smrg# to deal in the Software without restriction, including without limitation 6659607e0Smrg# on the rights to use, copy, modify, merge, publish, distribute, sub 7659607e0Smrg# license, and/or sell copies of the Software, and to permit persons to whom 8659607e0Smrg# the Software is furnished to do so, subject to the following conditions: 9659607e0Smrg# 10659607e0Smrg# The above copyright notice and this permission notice (including the next 11659607e0Smrg# paragraph) shall be included in all copies or substantial portions of the 12659607e0Smrg# Software. 13659607e0Smrg# 14659607e0Smrg# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15659607e0Smrg# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16659607e0Smrg# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 17659607e0Smrg# ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 18659607e0Smrg# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 19659607e0Smrg# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 20659607e0Smrg 21659607e0Smrg 22659607e0Smrg# this is obnoxious: 23659607e0Smrg# -module lets us name the module exactly how we want 24659607e0Smrg# -avoid-version prevents gratuitous .0.0.0 version numbers on the end 25659607e0Smrg# _ladir passes a dummy rpath to libtool so the thing will actually link 26659607e0Smrg# TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. 27659607e0Smrg@DRIVER_NAME@_drv_la_LTLIBRARIES = @DRIVER_NAME@_drv.la 28659607e0Smrg@DRIVER_NAME@_drv_la_LDFLAGS = -module -avoid-version 29659607e0Smrg@DRIVER_NAME@_drv_ladir = @inputdir@ 30659607e0Smrg 31659607e0Smrg@DRIVER_NAME@_drv_la_SOURCES = @DRIVER_NAME@.c @DRIVER_NAME@.h pnp.c mousePriv.h 32