Revision 688, 0.7 kB
(checked in by ppalmers, 16 years ago)
|
- Remove bebob sync tool, since this is now generalized into the FFADODevice API.
the sync source can be set with tests/test-ffado
- introduce a new directory for firmware tools: support/firmware
- Move the bridgeco firmware downloader to the support/firmware directory
- initial code for echo firmware downloading
|
Line | |
---|
1 |
#! /usr/bin/env python |
---|
2 |
|
---|
3 |
Import( 'env' ) |
---|
4 |
|
---|
5 |
env = env.Copy() |
---|
6 |
|
---|
7 |
#env.AppendUnique( CPPPATH=["#/src"] ) |
---|
8 |
#env.AppendUnique( LIBPATH=["#/src"] ) |
---|
9 |
#env.AppendUnique( LIBS=["ffado"] ) |
---|
10 |
|
---|
11 |
#for app in ["test-ffado", "test-extplugcmd", "test-fw410", "test-volume", "test-mixer", "test-cycletimer", "test-timestampedbuffer", "test-ieee1394service", "test-streamdump"]: |
---|
12 |
# env.Program( target=app, source = app+".cpp" ) |
---|
13 |
|
---|
14 |
#env.Program( target="test-ffado", source = "test-ffado.cpp" ) |
---|
15 |
#env.Program( target="", source = ".cpp" ) |
---|
16 |
|
---|
17 |
#env.Program( target="test-sytmonitor", source = env.Split( "test-sytmonitor.cpp SytMonitor.cpp" ) ) |
---|
18 |
# |
---|
19 |
|
---|
20 |
env.SConscript( dirs=["mixer","firmware"], exports="env" ) |
---|
21 |
|
---|