summaryrefslogtreecommitdiffstats
path: root/scons/source_list.py
Commit message (Collapse)AuthorAgeFilesLines
* scons: Populate top_srcdir and top_builddir variables when reading ↵José Fonseca2012-08-141-1/+4
| | | | | | | Makefiles.sources. This is not entirely correct, as scons doesn't put binaries in a "src" subdirectory, but doesn't seem to be a problem for now.
* scons: Fix scons build.José Fonseca2012-06-111-1/+4
|
* scons: Parse = operator in source lists too.José Fonseca2012-04-291-5/+6
| | | | Should fix the scons build.
* scons: add ParseSourceList methodChia-I Wu2011-08-231-0/+123
ParseSourceList() can be used to parse a source list file and returns the source files defined in it. It is supposed to be used like this # get the list of source files from C_SOURCES in Makefile.sources sources = env.ParseSourceList('Makefile.sources', 'C_SOURCES') The syntax of a source list file is compatible with GNU Make. This effectively allows SConscript and Makefile to share the source lists. Acked-by: José Fonseca <jfonseca@vmware.com> Acked-by: Chad Versace <chad@chad-versace.us>