root/trunk/libffado/src/SConscript

Revision 663, 7.3 kB (checked in by ppalmers, 16 years ago)

- Implement backend for ECHO FireWorks? mixer support

Line 
1 #! /usr/bin/env python
2
3 import os
4
5 Import( 'env' )
6
7 env.AppendUnique( CPPPATH=["#/", "#/src"] )
8
9 libenv = env.Copy()
10
11 ffado_source = env.Split( '\
12         devicemanager.cpp \
13         ffado.cpp \
14         ffado_streaming.cpp \
15         ffadodevice.cpp \
16         debugmodule/debugmodule.cpp \
17         libavc/streamformat/avc_extended_stream_format.cpp \
18         libavc/musicsubunit/avc_descriptor_music.cpp \
19         libavc/musicsubunit/avc_musicsubunit.cpp \
20         libavc/audiosubunit/avc_audiosubunit.cpp \
21         libavc/audiosubunit/avc_function_block.cpp \
22         libavc/descriptors/avc_descriptor_cmd.cpp \
23         libavc/descriptors/avc_descriptor.cpp \
24         libavc/general/avc_extended_subunit_info.cpp \
25         libavc/general/avc_unit_info.cpp \
26         libavc/general/avc_generic.cpp \
27         libavc/general/avc_subunit_info.cpp \
28         libavc/general/avc_connect.cpp \
29         libavc/general/avc_signal_format.cpp \
30         libavc/general/avc_extended_cmd_generic.cpp \
31         libavc/general/avc_extended_plug_info.cpp \
32         libavc/general/avc_plug_info.cpp \
33         libavc/general/avc_unit.cpp \
34         libavc/general/avc_subunit.cpp \
35         libavc/general/avc_plug.cpp \
36         libavc/general/avc_vendor_dependent_cmd.cpp \
37         libavc/avc_definitions.cpp \
38         libavc/ccm/avc_signal_source.cpp \
39         libieee1394/ARMHandler.cpp \
40         libieee1394/configrom.cpp \
41         libieee1394/csr1212.c \
42         libieee1394/ieee1394service.cpp \
43         libieee1394/IEC61883.cpp \
44         libosc/OscArgument.cpp \
45         libosc/OscClient.cpp \
46         libosc/OscMessage.cpp \
47         libosc/OscNode.cpp \
48         libosc/OscResponse.cpp \
49         libosc/OscServer.cpp \
50         libstreaming/cip.c \
51         libstreaming/IsoHandler.cpp \
52         libstreaming/IsoHandlerManager.cpp \
53         libstreaming/IsoStream.cpp \
54         libstreaming/Port.cpp \
55         libstreaming/PortManager.cpp \
56         libstreaming/StreamProcessor.cpp \
57         libstreaming/StreamProcessorManager.cpp \
58         libutil/cmd_serialize.cpp \
59         libutil/DelayLockedLoop.cpp \
60         libutil/PacketBuffer.cpp \
61         libutil/OptionContainer.cpp \
62         libutil/PosixThread.cpp \
63         libutil/ringbuffer.c \
64         libutil/serialize.cpp \
65         libutil/StreamStatistics.cpp \
66         libutil/SystemTimeSource.cpp \
67         libutil/Time.c \
68         libutil/TimeSource.cpp \
69         libutil/TimestampedBuffer.cpp \
70         libcontrol/Element.cpp \
71         libcontrol/BasicElements.cpp \
72         libcontrol/MatrixMixer.cpp \
73 ' )
74
75 bebob_source = env.Split( '\
76         bebob/bebob_avdevice.cpp \
77         bebob/bebob_avdevice_subunit.cpp \
78         bebob/bebob_avplug.cpp \
79         bebob/bebob_dl_bcd.cpp \
80         bebob/bebob_dl_codes.cpp \
81         bebob/bebob_dl_mgr.cpp \
82         bebob/bebob_functionblock.cpp \
83         bebob/bebob_mixer.cpp \
84         bebob/focusrite/focusrite_generic.cpp \
85         bebob/focusrite/focusrite_saffire.cpp \
86         bebob/focusrite/focusrite_saffirepro.cpp \
87         bebob/focusrite/focusrite_cmd.cpp \
88         bebob/terratec/terratec_device.cpp \
89         bebob/terratec/terratec_cmd.cpp \
90         maudio/maudio_avdevice.cpp \
91 ' )
92 bebob_pkgdata = env.Split( '\
93         maudio/refdesign.xml \
94         maudio/fw410.xml \
95         maudio/fwap.xml \
96         bebob/ffado_driver_bebob.txt \
97 ' )
98
99 genericavc_source =  env.Split( '\
100         genericavc/avc_avdevice.cpp \
101         genericavc/avc_vendormodel.cpp \
102 ' )
103
104 genericavc_pkgdata = env.Split( '\
105         genericavc/ffado_driver_genericavc.txt \
106 ' )     
107
108 fireworks_source =  env.Split( '\
109         fireworks/fireworks_device.cpp \
110         fireworks/efc/efc_avc_cmd.cpp \
111         fireworks/efc/efc_cmd.cpp \
112         fireworks/efc/efc_cmds_hardware.cpp \
113         fireworks/efc/efc_cmds_hardware_ctrl.cpp \
114         fireworks/efc/efc_cmds_mixer.cpp \
115         fireworks/efc/efc_cmds_monitor.cpp \
116         fireworks/audiofire/audiofire_device.cpp \
117 ' )
118
119 fireworks_pkgdata =  env.Split( '\
120         fireworks/ffado_driver_fireworks.txt \
121 ' )
122
123 motu_source = env.Split( '\
124         motu/motu_avdevice.cpp \
125         libstreaming/MotuPort.cpp \
126         libstreaming/MotuPortInfo.cpp \
127         libstreaming/MotuStreamProcessor.cpp \
128 ' )
129
130 dice_source = env.Split( '\
131         dice/dice_avdevice.cpp \
132 ' )
133
134 bounce_source = env.Split( '\
135         bounce/bounce_avdevice.cpp \
136         bounce/bounce_slave_avdevice.cpp \
137         libstreaming/AmdtpSlaveStreamProcessor.cpp \
138 ' )
139
140 metric_halo_source = env.Split( '\
141         metrichalo/mh_avdevice.cpp \
142 ' )
143
144 rme_source = env.Split( '\
145         rme/rme_avdevice.cpp \
146 ' )
147
148 amdtp_source = env.Split( '\
149         libstreaming/AmdtpPort.cpp \
150         libstreaming/AmdtpPortInfo.cpp \
151         libstreaming/AmdtpStreamProcessor.cpp \
152 ' )
153
154 source = ffado_source
155 pkgdata = []
156 if env['ENABLE_BEBOB']:
157         libenv.AppendUnique( CCFLAGS=["-DENABLE_BEBOB"] )
158         source += bebob_source
159         pkgdata += bebob_pkgdata
160 if env['ENABLE_FIREWORKS']:
161         libenv.AppendUnique( CCFLAGS=["-DENABLE_FIREWORKS"] )
162         source += fireworks_source
163         pkgdata += fireworks_pkgdata
164 if env['ENABLE_MOTU']:
165         libenv.AppendUnique( CCFLAGS=["-DENABLE_MOTU"] )
166         source += motu_source
167 if env['ENABLE_DICE']:
168         libenv.AppendUnique( CCFLAGS=["-DENABLE_DICE"] )
169         source += dice_source
170 if env['ENABLE_METRIC_HALO']:
171         libenv.AppendUnique( CCFLAGS=["-DENABLE_METRIC_HALO"] )
172         source += metric_halo_source
173 if env['ENABLE_RME']:
174         libenv.AppendUnique( CCFLAGS=["-DENABLE_RME"] )
175         source += rme_source
176 if env['ENABLE_BOUNCE']:
177         libenv.AppendUnique( CCFLAGS=["-DENABLE_BOUNCE"] )
178         source += bounce_source
179
180 # The list of devices needing GENERICAVC is controlled in ../SConstruct
181 if env['ENABLE_GENERICAVC']:
182         libenv.AppendUnique( CCFLAGS=["-DENABLE_GENERICAVC"] )
183         source += amdtp_source
184         source += genericavc_source
185         pkgdata += genericavc_pkgdata
186
187 if not env.GetOption( "clean" ):
188         libenv.MergeFlags( "-lrt" )
189         libenv.MergeFlags( env['LIBRAW1394_FLAGS'] )
190         libenv.MergeFlags( env['LIBAVC1394_FLAGS'] )
191         libenv.MergeFlags( env['LIBIEC61883_FLAGS'] )
192         libenv.MergeFlags( env['ALSA_FLAGS'] )
193         libenv.MergeFlags( env['LIBXML26_FLAGS'] )
194         libenv.MergeFlags( env['LIBLO_FLAGS'] )
195
196 #env1.AppendUnique( LINKFLAGS = env.Split("-Wl,-rpath $libdir -Wl,-soname -Wl,libffado.so.1 --version-info=1:0:0") )
197 ffadolib = libenv.SharedLibrary( "ffado", source )
198
199 #
200 # All the following tries to emulate the versioning of installed libs as seen from libtool...
201 #
202 if False:
203         print "Trying to emulate libtools versioned install"
204         libenv.Alias( "install", libenv.InstallAs( os.path.join('$libdir','libffado.so.$LIBVERSION'), ffadolib ) )
205         libenv.Ignore( ffadolib, os.path.join('$libdir','libffado.so') )
206         #env.Ignore( os.path.join('$libdir','libffado.so'), ffadolib )
207         #env.Ignore( os.path.join('$libdir','libffado.so.0'), "install" )
208
209         libenv.Alias( "install", libenv.Command(
210                 target="$libdir/libffado.so",
211                 source=libenv['libdir']+"/libffado.so.$LIBVERSION",
212                 action="ln -s $SOURCE $TARGET"
213                 ) )
214         libenv.Alias( "install", libenv.Command(
215                 target="$libdir/libffado.so.%s" % str(libenv['LIBVERSION']).rsplit('.',1)[0],
216                 source=libenv['libdir']+"/libffado.so.$LIBVERSION",
217                 action="ln -s $SOURCE $TARGET"
218                 ) )
219         libenv.Alias( "install", libenv.Command(
220                 target="$libdir/libffado.so.%s" % str(libenv['LIBVERSION']).rsplit('.',2)[0],
221                 source=libenv['libdir']+"/libffado.so.$LIBVERSION",
222                 action="ln -s $SOURCE $TARGET"
223                 ) )
224 else:
225         #print "Doing simple install"
226         libenv.Install( "$libdir", ffadolib )
227
228 #
229 # Install the pkgdata to $sharedir
230 #
231 for data in pkgdata:
232         libenv.Install( "$sharedir", data )
233
234 #
235 # For the debugging apps
236 #
237 env2 = libenv.Copy()
238 env2.PrependUnique( LIBPATH=env['build_base']+"src" )
239 env2.PrependUnique( LIBS="ffado" )
240
241 apps = { \
242         "test-debugmodule" : "debugmodule/test_debugmodule.cpp", \
243         "test-dll" : "libutil/test-dll.cpp", \
244         "test-unittests-util" : "libutil/unittests.cpp", \
245         "test-unittests-osc" : "libosc/unittests.cpp" \
246 }
247
248 installapps = []
249
250 if env['ENABLE_BEBOB']:
251         apps["bebob-sync"] = "bebob-sync.cpp"
252         apps["bridgeco-downloader"] = "bridgeco-downloader.cpp"
253         installapps += [ "bebob-sync", "bridgeco-downloader" ]
254
255
256 for app in apps.keys():
257         env2.Program( target=app, source = env.Split( apps[app] ) )
258         if app.find( "test" ) == -1:
259                 env2.Install( "$bindir", app )
260
Note: See TracBrowser for help on using the browser.