From 172d694cf7ba582635ac38454bad0f0fdaa14773 Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Sat, 16 Jan 2021 01:25:21 +0100 Subject: interrupt: Generate interrupts from platform spec. --- SConscript | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'SConscript') diff --git a/SConscript b/SConscript index 7511f19..846a01f 100644 --- a/SConscript +++ b/SConscript @@ -4,10 +4,14 @@ Import('env') Export('env') env.SConscript('ld_scripts/SConscript') -env.SConscript('usb/SConscript') env.Append( - LIB_SOURCES = Glob('*.cpp') + Glob('*/*.cpp'), + LIB_SOURCES = [ + env.SConscript('interrupt/SConscript'), + env.SConscript('usb/SConscript'), + Glob('startup/*.cpp'), + Glob('i2c/*.cpp'), + Glob('os/*.cpp'), + Glob('rcc/*.cpp'), + ], ) - -# vim: syn=python -- cgit v1.2.3