• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

A generic touchscreen calibration program for X.Org


Commit MetaInfo

修订版717de42664a7cc498c1e1a394e13e5c26e746aad (tree)
时间2010-07-03 23:43:13
作者Thierry Reding <thierry.reding@avio...>
CommiterTias Guns

Log Message

Fix dist* targets.

更改概述

差异

--- a/configure.ac
+++ b/configure.ac
@@ -73,4 +73,6 @@ AC_SUBST(VERSION)
7373
7474 AC_OUTPUT([Makefile
7575 src/Makefile
76+ src/calibrator/Makefile
77+ src/gui/Makefile
7678 man/Makefile])
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -24,3 +24,5 @@
2424 #
2525
2626 man_MANS = xinput_calibrator.1
27+EXTRA_DIST = \
28+ $(man_MANS)
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -24,6 +24,10 @@
2424 # OTHER DEALINGS IN THE SOFTWARE.
2525 #
2626
27+SUBDIRS = \
28+ calibrator \
29+ gui
30+
2731 AM_CXXFLAGS = -Wall -ansi -pedantic -Wmissing-declarations
2832
2933 bin_PROGRAMS = xinput_calibrator
@@ -40,3 +44,8 @@ xinput_calibrator_SOURCES = main_gtkmm.cpp
4044 xinput_calibrator_LDADD = $(XINPUT_LIBS) $(GTKMM_LIBS)
4145 xinput_calibrator_CXXFLAGS = $(XINPUT_CFLAGS) $(GTKMM_CFLAGS) $(AM_CXXFLAGS)
4246 endif
47+
48+EXTRA_DIST = \
49+ calibrator.cpp \
50+ calibrator.hh \
51+ main_common.hpp
--- /dev/null
+++ b/src/calibrator/Makefile.am
@@ -0,0 +1,4 @@
1+EXTRA_DIST = \
2+ calibratorEvdev.cpp \
3+ calibratorUsbtouchscreen.cpp \
4+ calibratorXorgPrint.cpp
--- /dev/null
+++ b/src/gui/Makefile.am
@@ -0,0 +1,3 @@
1+EXTRA_DIST = \
2+ gui_gtkmm.cpp \
3+ gui_x11.cpp