Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion man/xinput_calibrator.1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ It currently features:
.br
\- mis\-click detection (prevents bogus calibration)
.br
\- dynamically recalibrates the evdev driver
\- dynamically recalibrates the evdev/libinput driver
.br
\- outputs the calibration as xorg.conf.d snippet or HAL policy file
.br
Expand Down
8 changes: 5 additions & 3 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
# copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following
# conditions:
#
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Expand All @@ -32,7 +32,9 @@ AM_CXXFLAGS = -Wall -ansi -pedantic

bin_PROGRAMS = xinput_calibrator tester

COMMON_SRCS=calibrator.cpp calibrator/XorgPrint.cpp calibrator/Evdev.cpp calibrator/Usbtouchscreen.cpp main_common.cpp gui/gui_common.cpp
COMMON_SRCS=calibrator.cpp calibrator/XorgPrint.cpp calibrator/Evdev.cpp \
calibrator/Usbtouchscreen.cpp main_common.cpp gui/gui_common.cpp \
calibrator/Libinput.cpp

# only one of the BUILD_ flags should be set
if BUILD_X11
Expand Down
Loading