summaryrefslogtreecommitdiff
path: root/SConscript
blob: 7511f1960710df448fba6020f87e4aca7ffc29ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Don't call this file explicitly, it is called implicitly by the build rules.

Import('env')
Export('env')

env.SConscript('ld_scripts/SConscript')
env.SConscript('usb/SConscript')

env.Append(
	LIB_SOURCES = Glob('*.cpp') + Glob('*/*.cpp'),
)

# vim: syn=python