~ubuntu-branches/ubuntu/precise/xserver-xorg-input-vmmouse/precise-proposed

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Klimonda
  • Date: 2009-05-22 15:03:55 UTC
  • mfrom: (1.2.5 sid)
  • Revision ID: james.westby@ubuntu.com-20090522150355-r5ozt1torzvjin0d
Tags: 1:12.6.4-1ubuntu1
* Merge from debian unstable.
* New changes:
  - debian/control:
    + Add mdetect (<< 0.5.2.1ubuntu5) to Replaces: for seamless upgrade.
      This change may be removed after we drop Hardy support.
* Fixes bugs:
  - VMWare fusion host + vmmouse driver generates drag events on
    any click (LP: #366521)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
19
#  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
20
 
21
 
 
22
 
# this is obnoxious:
23
 
# -module lets us name the module exactly how we want
24
 
# -avoid-version prevents gratuitous .0.0.0 version numbers on the end
25
 
# _ladir passes a dummy rpath to libtool so the thing will actually link
26
 
# TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc.
27
21
@DRIVER_NAME@_drv_la_LTLIBRARIES = @DRIVER_NAME@_drv.la
28
22
@DRIVER_NAME@_drv_la_LDFLAGS = -module -avoid-version
 
23
@DRIVER_NAME@_drv_la_LIBADD = $(top_builddir)/shared/lib@DRIVER_NAME@.la
29
24
@DRIVER_NAME@_drv_ladir = @inputdir@
30
25
 
31
 
INCLUDES = -I$(srcdir)
 
26
INCLUDES = -I$(top_srcdir)/shared
32
27
 
33
 
@DRIVER_NAME@_drv_la_SOURCES = @DRIVER_NAME@.c @DRIVER_NAME@_defs.h \
34
 
                               @DRIVER_NAME@_client.c @DRIVER_NAME@_client.h \
35
 
                               @DRIVER_NAME@_proto.c @DRIVER_NAME@_proto.h
 
28
@DRIVER_NAME@_drv_la_SOURCES = @DRIVER_NAME@.c xf86OSmouse.h
36
29