From d383f2bcdb6ff13cc562fce1ff55d826035debad Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Mon, 6 Mar 2023 17:36:31 +0100 Subject: Simplify source tree Now just use make in the root directory to build. --- armdebug/SConscript | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 armdebug/SConscript (limited to 'armdebug/SConscript') diff --git a/armdebug/SConscript b/armdebug/SConscript new file mode 100644 index 0000000..c495847 --- /dev/null +++ b/armdebug/SConscript @@ -0,0 +1,13 @@ +# This scons build script is used by NxOS + +from glob import glob + +Import('env') + + +for source in glob('Debugger/*.[cS]'): + obj = env.Object(source.split('.')[0], source) + env.Append(NXOS_DEBUG=obj) + +if env['WITH_DOXYGEN']: + env.Doxygen('Doxyfile') -- cgit v1.2.3