blob: a611de5465a90d3dbf51eb8b718cd376ed9beff5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
AM_CXXFLAGS := $(CXXFLAGS) $(EXTRA_CXXFLAGS) -I../include $(QT_CXXFLAGS) \
-DQT_THREAD_SUPPORT \
-DPIXMAPS=\"$(datadir)/pixmaps\" \
-DETC=\"$(prefix)/etc/miav\"
bin_PROGRAMS = miav
miav_SOURCES = $(shell if [ $QT_CXXFLAGS ] ; then ../tools/MocList cc; fi ) \
aboutwindow.cc \
camera.cc \
cprquerydialog.cc \
daemon.cc \
decoder.cc \
dv1394.cc \
encoder.cc \
file.cc \
frame.cc \
img_encoder.cc \
info.cc \
info_console.cc \
info_gui.cc \
libfame_wrapper.cc \
liblame_wrapper.cc \
mainwindow.cc \
messagebox.cc \
miav.cc \
miav_daemon.cc \
miav_config.cc \
mov_encoder.cc \
mov_encoder_thread.cc \
mov_encoder_writer.cc \
network.cc \
player.cc \
server.cc \
server_status.cc \
socket.cc \
thread.cc \
util.cc \
videowidget.cc
EXTRA_DIST = \
aboutwindow.h \
camera.h \
cprquerydialog.h \
daemon.h \
debug.h \
decoder.h \
dv.h \
dv1394.h \
encoder.h \
file.h \
frame.h \
img_encoder.h \
info.h \
info_console.h \
info_gui.h \
libfame_wrapper.h \
liblame_wrapper.h \
mainwindow.h \
messagebox.h \
miav.h \
miav_daemon.h \
miav_config.h \
mov_encoder.h \
mov_encoder_thread.h \
mov_encoder_writer.h \
network.h \
package.h \
player.h \
queue.h \
server.h \
server_status.h \
socket.h \
thread.h \
util.h \
videowidget.h
miav_LDADD := $(shell if [ $QT_CXXFLAGS ] ; then ../tools/MocList o; fi )
miav_MOC = $(shell if [ $QT_CXXFLAGS ] ; then ../tools/MocList cc; fi )
BUILT_SOURCES = $(miav_MOC)
CLEANFILES = $(BUILT_SOURCES)
%.moc.cc: %.h
$(MOC) -o $@ $<
%.h: %.ui
$(UIC) -o $@ $<
%.cc: %.ui
$(UIC) -o $@ -impl $*.h $<
# command for creating .res file from .rc on Win32
%.res: %.rc
rc $<
|