root/trunk/libffado/src/SConscript

Revision 665, 7.4 kB (checked in by ppalmers, 16 years ago)

Implement support for Phantom power on the fireworks devices

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/fireworks_control.cpp \
111         fireworks/efc/efc_avc_cmd.cpp \
112         fireworks/efc/efc_cmd.cpp \
113         fireworks/efc/efc_cmds_hardware.cpp \
114         fireworks/efc/efc_cmds_hardware_ctrl.cpp \
115         fireworks/efc/efc_cmds_mixer.cpp \
116         fireworks/efc/efc_cmds_monitor.cpp \
117         fireworks/efc/efc_cmds_ioconfig.cpp \
118         fireworks/audiofire/audiofire_device.cpp \
119 ' )
120
121 fireworks_pkgdata =  env.Split( '\
122         fireworks/ffado_driver_fireworks.txt \
123 ' )
124
125 motu_source = env.Split( '\
126         motu/motu_avdevice.cpp \
127         libstreaming/MotuPort.cpp \
128         libstreaming/MotuPortInfo.cpp \
129         libstreaming/MotuStreamProcessor.cpp \
130 ' )
131
132 dice_source = env.Split( '\
133         dice/dice_avdevice.cpp \
134 ' )
135
136 bounce_source = env.Split( '\
137         bounce/bounce_avdevice.cpp \
138         bounce/bounce_slave_avdevice.cpp \
139         libstreaming/AmdtpSlaveStreamProcessor.cpp \
140 ' )
141
142 metric_halo_source = env.Split( '\
143         metrichalo/mh_avdevice.cpp \
144 ' )
145
146 rme_source = env.Split( '\
147         rme/rme_avdevice.cpp \
148 ' )
149
150 amdtp_source = env.Split( '\
151         libstreaming/AmdtpPort.cpp \
152         libstreaming/AmdtpPortInfo.cpp \
153         libstreaming/AmdtpStreamProcessor.cpp \
154 ' )
155
156 source = ffado_source
157 pkgdata = []
158 if env['ENABLE_BEBOB']:
159         libenv.AppendUnique( CCFLAGS=["-DENABLE_BEBOB"] )
160         source += bebob_source
161         pkgdata += bebob_pkgdata
162 if env['ENABLE_FIREWORKS']:
163         libenv.AppendUnique( CCFLAGS=["-DENABLE_FIREWORKS"] )
164         source += fireworks_source
165         pkgdata += fireworks_pkgdata
166 if env['ENABLE_MOTU']:
167         libenv.AppendUnique( CCFLAGS=["-DENABLE_MOTU"] )
168         source += motu_source
169 if env['ENABLE_DICE']:
170         libenv.AppendUnique( CCFLAGS=["-DENABLE_DICE"] )
171         source += dice_source
172 if env['ENABLE_METRIC_HALO']:
173         libenv.AppendUnique( CCFLAGS=["-DENABLE_METRIC_HALO"] )
174         source += metric_halo_source
175 if env['ENABLE_RME']:
176         libenv.AppendUnique( CCFLAGS=["-DENABLE_RME"] )
177         source += rme_source
178 if env['ENABLE_BOUNCE']:
179         libenv.AppendUnique( CCFLAGS=["-DENABLE_BOUNCE"] )
180         source += bounce_source
181
182 # The list of devices needing GENERICAVC is controlled in ../SConstruct
183 if env['ENABLE_GENERICAVC']:
184         libenv.AppendUnique( CCFLAGS=["-DENABLE_GENERICAVC"] )
185         source += amdtp_source
186         source += genericavc_source
187         pkgdata += genericavc_pkgdata
188
189 if not env.GetOption( "clean" ):
190         libenv.MergeFlags( "-lrt" )
191         libenv.MergeFlags( env['LIBRAW1394_FLAGS'] )
192         libenv.MergeFlags( env['LIBAVC1394_FLAGS'] )
193         libenv.MergeFlags( env['LIBIEC61883_FLAGS'] )
194         libenv.MergeFlags( env['ALSA_FLAGS'] )
195         libenv.MergeFlags( env['LIBXML26_FLAGS'] )
196         libenv.MergeFlags( env['LIBLO_FLAGS'] )
197
198 #env1.AppendUnique( LINKFLAGS = env.Split("-Wl,-rpath $libdir -Wl,-soname -Wl,libffado.so.1 --version-info=1:0:0") )
199 ffadolib = libenv.SharedLibrary( "ffado", source )
200
201 #
202 # All the following tries to emulate the versioning of installed libs as seen from libtool...
203 #
204 if False:
205         print "Trying to emulate libtools versioned install"
206         libenv.Alias( "install", libenv.InstallAs( os.path.join('$libdir','libffado.so.$LIBVERSION'), ffadolib ) )
207         libenv.Ignore( ffadolib, os.path.join('$libdir','libffado.so') )
208         #env.Ignore( os.path.join('$libdir','libffado.so'), ffadolib )
209         #env.Ignore( os.path.join('$libdir','libffado.so.0'), "install" )
210
211         libenv.Alias( "install", libenv.Command(
212                 target="$libdir/libffado.so",
213                 source=libenv['libdir']+"/libffado.so.$LIBVERSION",
214                 action="ln -s $SOURCE $TARGET"
215                 ) )
216         libenv.Alias( "install", libenv.Command(
217                 target="$libdir/libffado.so.%s" % str(libenv['LIBVERSION']).rsplit('.',1)[0],
218                 source=libenv['libdir']+"/libffado.so.$LIBVERSION",
219                 action="ln -s $SOURCE $TARGET"
220                 ) )
221         libenv.Alias( "install", libenv.Command(
222                 target="$libdir/libffado.so.%s" % str(libenv['LIBVERSION']).rsplit('.',2)[0],
223                 source=libenv['libdir']+"/libffado.so.$LIBVERSION",
224                 action="ln -s $SOURCE $TARGET"
225                 ) )
226 else:
227         #print "Doing simple install"
228         libenv.Install( "$libdir", ffadolib )
229
230 #
231 # Install the pkgdata to $sharedir
232 #
233 for data in pkgdata:
234         libenv.Install( "$sharedir", data )
235
236 #
237 # For the debugging apps
238 #
239 env2 = libenv.Copy()
240 env2.PrependUnique( LIBPATH=env['build_base']+"src" )
241 env2.PrependUnique( LIBS="ffado" )
242
243 apps = { \
244         "test-debugmodule" : "debugmodule/test_debugmodule.cpp", \
245         "test-dll" : "libutil/test-dll.cpp", \
246         "test-unittests-util" : "libutil/unittests.cpp", \
247         "test-unittests-osc" : "libosc/unittests.cpp" \
248 }
249
250 installapps = []
251
252 if env['ENABLE_BEBOB']:
253         apps["bebob-sync"] = "bebob-sync.cpp"
254         apps["bridgeco-downloader"] = "bridgeco-downloader.cpp"
255         installapps += [ "bebob-sync", "bridgeco-downloader" ]
256
257
258 for app in apps.keys():
259         env2.Program( target=app, source = env.Split( apps[app] ) )
260         if app.find( "test" ) == -1:
261                 env2.Install( "$bindir", app )
262
Note: See TracBrowser for help on using the browser.