diff options
author | Alexandr Shadchin <shadchin@cvs.openbsd.org> | 2011-11-28 23:50:00 +0000 |
---|---|---|
committer | Alexandr Shadchin <shadchin@cvs.openbsd.org> | 2011-11-28 23:50:00 +0000 |
commit | 40e8fc6d789367334ea8d8eeaf00f5f749b81f95 (patch) | |
tree | 101cd0e997940a40b79d1cb2f0abac112caf833a /driver/xf86-input-ws/src/Makefile.in | |
parent | 7157fcc71af4f6b85d6caa415cbf70c9cd948dce (diff) |
Adding wheel emulation, ported from evdev(4)
ok matthieu@
Diffstat (limited to 'driver/xf86-input-ws/src/Makefile.in')
-rw-r--r-- | driver/xf86-input-ws/src/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/driver/xf86-input-ws/src/Makefile.in b/driver/xf86-input-ws/src/Makefile.in index 562c9698f..c9e098b27 100644 --- a/driver/xf86-input-ws/src/Makefile.in +++ b/driver/xf86-input-ws/src/Makefile.in @@ -55,7 +55,8 @@ am__installdirs = "$(DESTDIR)$(@DRIVER_NAME@_drv_ladir)" @DRIVER_NAME@_drv_laLTLIBRARIES_INSTALL = $(INSTALL) LTLIBRARIES = $(@DRIVER_NAME@_drv_la_LTLIBRARIES) @DRIVER_NAME@_drv_la_LIBADD = -am_@DRIVER_NAME@_drv_la_OBJECTS = @DRIVER_NAME@.lo emumb.lo +am_@DRIVER_NAME@_drv_la_OBJECTS = @DRIVER_NAME@.lo emumb.lo \ + emuwheel.lo @DRIVER_NAME@_drv_la_OBJECTS = $(am_@DRIVER_NAME@_drv_la_OBJECTS) DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp @@ -230,7 +231,8 @@ INCLUDES = -I$(top_srcdir)/include/ @DRIVER_NAME@_drv_la_SOURCES = \ @DRIVER_NAME@.c \ @DRIVER_NAME@.h \ - emumb.c + emumb.c \ + emuwheel.c all: all-am @@ -303,6 +305,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/@DRIVER_NAME@.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emumb.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emuwheel.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ |