SConscript 333 B

12345678910111213141516171819202122
  1. Import('RTT_ROOT')
  2. from building import *
  3. cwd = GetCurrentDir()
  4. src = Split("""
  5. start_gcc.S
  6. dm365.c
  7. dma.c
  8. findbit.S
  9. interrupt.c
  10. psc.c
  11. reset.c
  12. system_clock.c
  13. trap.c
  14. """)
  15. # The set of source files associated with this SConscript file.
  16. path = [cwd]
  17. group = DefineGroup('Startup', src, depend = [''], CPPPATH = path)
  18. Return('group')