root/trunk/libffado/src/Makefile.am

Revision 435, 8.0 kB (checked in by pieterpalmers, 17 years ago)

src/devicemanager:
- start OSC server for the device manager

src/devicemanager,
src/iavdevice,
src/libieee1394/configrom:
- inherit from OscNode? to become Osc'able

src/bounce,
src/libstreaming/AmdtpStreamProcessor,
src/libstreaming/AmdtpSlaveStreamProcessor:
- fixed bounce device implementation, now working

src/bebob:
- fixed midi bug

General:
- removed 'intermediate XML'
- removed obsolete tests
- removed obsolete files
- removed obsolete API calls

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 # Makefile.am - Makefile template
2 # Copyright (C) 2005,06 by Daniel Wagner.
3 # Copyright (C) 2006 by Pieter Palmers.
4 #
5 # This file is part of FreeBoB.
6 #
7 # FreeBoB is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11 # FreeBoB is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with FreeBoB; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
19 INCLUDES =                                              \
20         $(LIBRAW1394_CFLAGS) $(LIBIEC61883_CFLAGS)      \
21         $(LIBAVC1394_CFLAGS)    \
22         $(LIBXMLCPP_CFLAGS)     $(LIBLO_CFLAGS)                 \
23         -I$(top_srcdir) -I$(top_srcdir)/src
24
25 lib_LTLIBRARIES = libfreebob.la
26
27 libfreebob_la_LDFLAGS =                                 \
28         -version-info $(LT_VERSION) $(LIBRAW1394_LIBS)  \
29         $(LIBIEC61883_LIBS) $(LIBAVC1394_LIBS)          \
30         $(LIBXMLCPP_LIBS) $(LIBLO_LIBS) \
31         -lpthread -lrt
32
33 libfreebob_la_LIBADD = -lrt
34
35 noinst_HEADERS = \
36     libieee1394/configrom.h libieee1394/csr1212.h \
37     libieee1394/ieee1394service.h libieee1394/ARMHandler.h \
38     libieee1394/IEC61883.h \
39     debugmodule/debugmodule.h \
40         devicemanager.h fbtypes.h iavdevice.h threads.h bebob/bebob_avdevice.h \
41         bebob/bebob_avdevice_subunit.h bebob/bebob_avplug.h bebob/bebob_dl_bcd.h bebob/bebob_dl_codes.h \
42         bebob/bebob_dl_mgr.h bebob/bebob_functionblock.h bounce/bounce_avdevice.h bounce/bounce_slave_avdevice.h \
43         maudio/maudio_avdevice.h motu/motu_avdevice.h rme/rme_avdevice.h \
44         metrichalo/mh_avdevice.h dice/dice_avdevice.h \
45         libavc/avc_connect.h \
46         libavc/avc_definitions.h libavc/avc_extended_cmd_generic.h \
47         libavc/avc_extended_plug_info.h libavc/avc_extended_stream_format.h \
48         libavc/avc_extended_subunit_info.h libavc/avc_function_block.h libavc/avc_generic.h \
49         libavc/avc_plug_info.h libavc/avc_serialize.h libavc/avc_signal_source.h \
50         libavc/avc_subunit_info.h libavc/avc_unit_info.h \
51         libosc/OscArgument.h libosc/OscNode.h libosc/OscResponse.h libosc/OscServer.h libosc/OscMessage.h \
52         libstreaming/AmdtpPort.h libstreaming/AmdtpPortInfo.h libstreaming/AmdtpStreamProcessor.h \
53         libstreaming/AmdtpSlaveStreamProcessor.h \
54         libstreaming/cip.h libstreaming/cycletimer.h libstreaming/IsoHandler.h \
55         libstreaming/IsoHandlerManager.h libstreaming/IsoStream.h libstreaming/MotuPort.h \
56         libstreaming/MotuPortInfo.h libstreaming/MotuStreamProcessor.h \
57         libstreaming/Port.h libstreaming/PortManager.h \
58         libstreaming/StreamProcessor.h libstreaming/StreamProcessorManager.h \
59         libutil/Atomic.h libutil/cycles.h libutil/DelayLockedLoop.h libutil/PosixThread.h \
60         libutil/ringbuffer.h libutil/OptionContainer.h \
61         libutil/PacketBuffer.h libutil/StreamStatistics.h \
62         libutil/serialize.h libutil/SystemTimeSource.h libutil/Thread.h libutil/Time.h \
63         libutil/TimeSource.h libutil/TimestampedBuffer.h
64
65 # common sources
66 libfreebob_la_SOURCES = \
67         devicemanager.cpp \
68         freebob.cpp \
69         freebob_streaming.cpp \
70         iavdevice.cpp \
71         debugmodule/debugmodule.cpp \
72         libavc/avc_connect.cpp \
73         libavc/avc_definitions.cpp \
74         libavc/avc_extended_cmd_generic.cpp \
75         libavc/avc_extended_plug_info.cpp \
76         libavc/avc_extended_stream_format.cpp \
77         libavc/avc_extended_subunit_info.cpp \
78         libavc/avc_function_block.cpp \
79         libavc/avc_generic.cpp \
80         libavc/avc_plug_info.cpp \
81         libavc/avc_serialize.cpp \
82         libavc/avc_signal_source.cpp \
83         libavc/avc_subunit_info.cpp \
84         libavc/avc_unit_info.cpp \
85         libieee1394/ARMHandler.cpp \
86         libieee1394/configrom.cpp \
87         libieee1394/csr1212.c \
88         libieee1394/ieee1394service.cpp \
89         libieee1394/IEC61883.cpp \
90         libosc/OscArgument.cpp \
91         libosc/OscMessage.cpp \
92         libosc/OscNode.cpp \
93         libosc/OscResponse.cpp \
94         libosc/OscServer.cpp \
95         libstreaming/cip.c \
96         libstreaming/IsoHandler.cpp \
97         libstreaming/IsoHandlerManager.cpp \
98         libstreaming/IsoStream.cpp \
99         libstreaming/Port.cpp \
100         libstreaming/PortManager.cpp \
101         libstreaming/StreamProcessor.cpp \
102         libstreaming/StreamProcessorManager.cpp \
103         libutil/DelayLockedLoop.cpp \
104         libutil/PacketBuffer.cpp \
105         libutil/OptionContainer.cpp \
106         libutil/PosixThread.cpp \
107         libutil/ringbuffer.c \
108         libutil/serialize.cpp \
109         libutil/StreamStatistics.cpp \
110         libutil/SystemTimeSource.cpp \
111         libutil/Time.c \
112         libutil/TimeSource.cpp \
113         libutil/TimestampedBuffer.cpp
114
115 # class specific sources
116 bebob_src = \
117         bebob/bebob_avdevice.cpp \
118         bebob/bebob_avdevice_subunit.cpp \
119         bebob/bebob_avplug.cpp \
120         bebob/bebob_dl_bcd.cpp \
121         bebob/bebob_dl_codes.cpp \
122         bebob/bebob_dl_mgr.cpp \
123         bebob/bebob_functionblock.cpp \
124         maudio/maudio_avdevice.cpp
125
126 motu_src = \
127         motu/motu_avdevice.cpp \
128         libstreaming/MotuPort.cpp \
129         libstreaming/MotuPortInfo.cpp \
130         libstreaming/MotuStreamProcessor.cpp
131
132 dice_src = \
133         dice/dice_avdevice.cpp
134
135 bounce_src = \
136         bounce/bounce_avdevice.cpp \
137         bounce/bounce_slave_avdevice.cpp \
138         libstreaming/AmdtpSlaveStreamProcessor.cpp
139
140 metric_halo_src = \
141         metrichalo/mh_avdevice.cpp
142
143 rme_src = \
144         rme/rme_avdevice.cpp
145
146 amdtp_src = \
147         libstreaming/AmdtpPort.cpp \
148         libstreaming/AmdtpPortInfo.cpp \
149         libstreaming/AmdtpStreamProcessor.cpp
150
151 # data
152 #  generic
153 nobase_dist_pkgdata_DATA =
154 #  bebob specific
155 bebob_pkgdata =                                 \
156         maudio/refdesign.xml                            \
157         maudio/fw410.xml                                \
158         maudio/fwap.xml
159
160 # programs intended for installation in the 'bin' directory
161 #  generic
162 bin_PROGRAMS =
163
164 #  class specific
165 bebob_bin = freebob-downloader freebob-sync
166
167 freebob_downloader_SOURCES = freebob-downloader.cpp
168 freebob_downloader_LDADD = $(top_builddir)/src/libfreebob.la
169
170 freebob_sync_SOURCES = freebob-sync.cpp
171 freebob_sync_LDADD = $(top_builddir)/src/libfreebob.la
172
173 # programs not intended for installation
174 # generic
175 noinst_PROGRAMS = test-dll test-debugmodule \
176                   test-unittests-util test-unittests-osc \
177                   test-ser
178
179 test_dll_SOURCES = libutil/test-dll.cpp
180 test_dll_LDADD = $(top_builddir)/src/libfreebob.la
181
182 test_debugmodule_SOURCES = debugmodule/test_debugmodule.cpp
183 test_debugmodule_LDADD = $(top_builddir)/src/libfreebob.la
184
185 test_unittests_util_SOURCES = libutil/unittests.cpp
186 test_unittests_util_LDADD = $(top_builddir)/src/libfreebob.la
187
188 test_unittests_osc_SOURCES = libosc/unittests.cpp
189 test_unittests_osc_LDADD = $(top_builddir)/src/libfreebob.la
190
191 test_ser_SOURCES = ser.cpp
192 test_ser_LDADD = $(top_builddir)/src/libfreebob.la
193
194 # build customisation
195
196 if BUILD_BEBOB
197 libfreebob_la_SOURCES += $(bebob_src)
198 bin_PROGRAMS += $(bebob_bin)
199 noinst_PROGRAMS += $(bebob_noinst)
200 nobase_dist_pkgdata_DATA += $(bebob_pkgdata)
201 endif
202
203 if BUILD_BOUNCE
204 libfreebob_la_SOURCES += $(bounce_src)
205 bin_PROGRAMS += $(bounce_bin)
206 noinst_PROGRAMS += $(bounce_noinst)
207 nobase_dist_pkgdata_DATA += $(bounce_pkgdata)
208 endif
209
210 if BUILD_DICE
211 libfreebob_la_SOURCES += $(dice_src)
212 bin_PROGRAMS += $(dice_bin)
213 noinst_PROGRAMS += $(dice_noinst)
214 nobase_dist_pkgdata_DATA += $(dice_pkgdata)
215 endif
216
217 if BUILD_MOTU
218 libfreebob_la_SOURCES += $(motu_src)
219 bin_PROGRAMS += $(motu_bin)
220 noinst_PROGRAMS += $(motu_noinst)
221 nobase_dist_pkgdata_DATA += $(motu_pkgdata)
222 endif
223
224 if BUILD_METRIC_HALO
225 libfreebob_la_SOURCES += $(metric_halo_src)
226 bin_PROGRAMS += $(metric_halo_bin)
227 noinst_PROGRAMS += $(metric_halo_noinst)
228 nobase_dist_pkgdata_DATA += $(metric_halo_pkgdata)
229 endif
230
231 if BUILD_RME
232 libfreebob_la_SOURCES += $(rme_src)
233 bin_PROGRAMS += $(rme_bin)
234 noinst_PROGRAMS += $(rme_noinst)
235 nobase_dist_pkgdata_DATA += $(rme_pkgdata)
236 endif
237
238 if BUILD_AMDTP
239 libfreebob_la_SOURCES += $(amdtp_src)
240 bin_PROGRAMS += $(amdtp_bin)
241 noinst_PROGRAMS += $(amdtp_noinst)
242 nobase_dist_pkgdata_DATA += $(amdtp_pkgdata)
243 endif
Note: See TracBrowser for help on using the browser.