blob: 5a443275792f9e1f358d41bb02b5dae67465b92b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Import('programs_env')
toplevel_srcs = map(File, [
'area.cc',
'area.h',
'sidebar.h',
'tabs_notebook.cc',
'tabs_notebook.h',
'view.h'
])
srcs = toplevel_srcs
# Distribute the build files.
programs_env.Dist('Makefile.am', 'SConscript')
Return('srcs')
|