diff --git a/test/SConscript b/test/SConscript new file mode 100644 index 0000000..f0639e5 --- /dev/null +++ b/test/SConscript @@ -0,0 +1,25 @@ +# SConscript +# vim: set ft=python: +# +# Eryn Wells + +import os.path + +Import('env') + + +subdirs = [ + # TODO: Put subdirectories here. +] + +for d in subdirs: + env.SConscript(os.path.join(d, 'SConscript'), {'env': env}) + + +files = [ + # TODO: Put files here. +] + +objs = [] +for f in files: + objs.append(env.Object(f))