A generic touchscreen calibration program for X.Org
Revision | 717de42664a7cc498c1e1a394e13e5c26e746aad (tree) |
---|---|
Zeit | 2010-07-03 23:43:13 |
Autor | Thierry Reding <thierry.reding@avio...> |
Commiter | Tias Guns |
Fix dist* targets.
@@ -73,4 +73,6 @@ AC_SUBST(VERSION) | ||
73 | 73 | |
74 | 74 | AC_OUTPUT([Makefile |
75 | 75 | src/Makefile |
76 | + src/calibrator/Makefile | |
77 | + src/gui/Makefile | |
76 | 78 | man/Makefile]) |
@@ -24,3 +24,5 @@ | ||
24 | 24 | # |
25 | 25 | |
26 | 26 | man_MANS = xinput_calibrator.1 |
27 | +EXTRA_DIST = \ | |
28 | + $(man_MANS) |
@@ -24,6 +24,10 @@ | ||
24 | 24 | # OTHER DEALINGS IN THE SOFTWARE. |
25 | 25 | # |
26 | 26 | |
27 | +SUBDIRS = \ | |
28 | + calibrator \ | |
29 | + gui | |
30 | + | |
27 | 31 | AM_CXXFLAGS = -Wall -ansi -pedantic -Wmissing-declarations |
28 | 32 | |
29 | 33 | bin_PROGRAMS = xinput_calibrator |
@@ -40,3 +44,8 @@ xinput_calibrator_SOURCES = main_gtkmm.cpp | ||
40 | 44 | xinput_calibrator_LDADD = $(XINPUT_LIBS) $(GTKMM_LIBS) |
41 | 45 | xinput_calibrator_CXXFLAGS = $(XINPUT_CFLAGS) $(GTKMM_CFLAGS) $(AM_CXXFLAGS) |
42 | 46 | endif |
47 | + | |
48 | +EXTRA_DIST = \ | |
49 | + calibrator.cpp \ | |
50 | + calibrator.hh \ | |
51 | + main_common.hpp |
@@ -0,0 +1,4 @@ | ||
1 | +EXTRA_DIST = \ | |
2 | + calibratorEvdev.cpp \ | |
3 | + calibratorUsbtouchscreen.cpp \ | |
4 | + calibratorXorgPrint.cpp |
@@ -0,0 +1,3 @@ | ||
1 | +EXTRA_DIST = \ | |
2 | + gui_gtkmm.cpp \ | |
3 | + gui_x11.cpp |