178 |
kaklik |
1 |
SUFFIXES = .ui .png |
|
|
2 |
|
|
|
3 |
bin_PROGRAMS = mando |
|
|
4 |
|
|
|
5 |
mando_SOURCES = calibrateWidget.cc calibrateWidget.hh \ |
|
|
6 |
cameraProjectorCalibration.cc cameraProjectorCalibration.hh \ |
|
|
7 |
crossWidget.cc crossWidget.hh \ |
|
|
8 |
main.cc mandoWindow.cc mandoWindow.hh \ |
|
|
9 |
mandoWizard.cc mandoWizard.hh \ |
|
|
10 |
pointerRecognition.cc pointerRecognition.hh \ |
|
|
11 |
selectRectWidget.cc selectRectWidget.hh \ |
|
|
12 |
tools.cc tools.hh \ |
|
|
13 |
videoWidget.cc videoWidget.hh \ |
|
|
14 |
ui_mandoWindow.hh ui_mandoWizard.hh \ |
|
|
15 |
colourspace.cc colourspace.h \ |
|
|
16 |
colour_sensitivity.h \ |
|
|
17 |
fourier.cc fourier.h fourier.tcc \ |
|
|
18 |
functions.h \ |
|
|
19 |
gauss.h gauss.tcc \ |
|
|
20 |
image.h image_ref.h \ |
|
|
21 |
image_conv.h \ |
|
|
22 |
image_funcs.cc image_funcs.h image_funcs.tcc \ |
|
|
23 |
image_input.h \ |
|
|
24 |
image_op.h image_op_help2.h image_op_help3.h image_op_help.h \ |
|
|
25 |
image_v4linput.cc image_v4linput.h image_v4linput.tcc \ |
|
|
26 |
image_dc1394input.cc image_dc1394input.h image_dc1394input.tcc \ |
|
|
27 |
linalg.cc linalg.h linalg.tcc clapack.h \ |
|
|
28 |
mimasexception.cc mimasexception.h \ |
|
|
29 |
multi_array_conv.h multi_array_conv.h multi_array_conv.tcc \ |
|
|
30 |
multi_array_op.h multi_array_op_help2.h multi_array_op_help3.h \ |
|
|
31 |
multi_array_op_help.h object.h \ |
|
|
32 |
rgba.h rgba.tcc \ |
|
|
33 |
moc_calibrateWidget.cc moc_crossWidget.cc \ |
|
|
34 |
moc_mandoWindow.cc moc_mandoWizard.cc moc_selectRectWidget.cc \ |
|
|
35 |
moc_videoWidget.cc \ |
|
|
36 |
qrc_mando.cc |
|
|
37 |
|
|
|
38 |
mando_LDFLAGS = |
|
|
39 |
mando_LDADD = $(QT_LIBS) $(LIBS_DC1394) $(FFTW3_LIBS) $(FFTW3F_LIBS) \ |
|
|
40 |
$(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) $(X_LIBS) -lXtst |
|
|
41 |
|
|
|
42 |
BUILT_SOURCES = moc_mandoWindow.cc moc_mandoWizard.cc \ |
|
|
43 |
ui_mandoWindow.hh ui_mandoWizard.hh \ |
|
|
44 |
qrc_mando.cc |
|
|
45 |
|
|
|
46 |
EXTRA_DIST = COPYING ChangeLog acx_blas.m4 acx_lapack.m4 mdl_have_opengl.m4 \ |
|
|
47 |
configure.ac Makefile.dist \ |
|
|
48 |
mandoWindow.ui mandoWizard.ui configure.png \ |
|
|
49 |
mandologo.png quit.png searchPattern.png \ |
|
|
50 |
projectedPattern.png mando.qrc |
|
|
51 |
|
|
|
52 |
CLEANFILES = *~ *.o moc_*.cc ui_*.hh qrc_*.cc |
|
|
53 |
|
|
|
54 |
ui_%.hh: %.ui |
|
|
55 |
$(QT_UIC) $< -o $@ |
|
|
56 |
|
|
|
57 |
moc_%.cc: %.hh |
|
|
58 |
$(QT_MOC) $< -o $@ |
|
|
59 |
|
|
|
60 |
qrc_mando.cc: mando.qrc configure.png mandologo.png \ |
|
|
61 |
quit.png searchPattern.png projectedPattern.png |
|
|
62 |
$(QT_RCC) $< -o $@ |