diff options
author | Christoph Brill <egore911@egore911.de> | 2008-06-06 21:28:44 +0200 |
---|---|---|
committer | Christoph Brill <egore911@egore911.de> | 2008-06-06 21:28:44 +0200 |
commit | 7761e3903fa70aed951c0fc81b58382cf0ac6057 (patch) | |
tree | cb9d66afc4602552a002349b2cfdfd7a56545a20 /src/Makefile.am | |
parent | da95796d0686b474ebd0752959e5d1706d82b1c3 (diff) |
Initial version that passes "make distcheck".
This version is able to build against latest xorg git (including xinput
changes for MPX). It incoperates many concepts stolen from xf86-input-evdev.
I'm not sure about *BSD support, but from what I understood psmcomm is only
used on *BSD whild eventcomm is only used on Linux. So I enabled the build
of these only on the given operating system. Also fix some minor issues that
are related to the old build system (VERSION_ID related).
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2221bbc..98a14c0 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -28,4 +28,19 @@ @DRIVER_NAME@_drv_la_LDFLAGS = -module -avoid-version @DRIVER_NAME@_drv_ladir = @inputdir@ -@DRIVER_NAME@_drv_la_SOURCES = @DRIVER_NAME@.c +@DRIVER_NAME@_drv_la_SOURCES = @DRIVER_NAME@.c @DRIVER_NAME@.h \ + alpscomm.c alpscomm.h \ + eventcomm.c eventcomm.h \ + ps2comm.c ps2comm.h \ + psmcomm.c psmcomm.h \ + synproto.h + +bin_PROGRAMS = \ + synclient \ + syndaemon + +synclient_SOURCES = synclient.c +synclient_LDFLAGS = -lm + +syndaemon_SOURCES = syndaemon.c +syndaemon_LDFLAGS = -lXi |