summaryrefslogtreecommitdiff
path: root/bsps/sparc/erc32/wscript
blob: 772f16283bb43a0d3997e64d41f768a5cfccee50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
def build(ctx):
	source = []

	source += [
		"btimer/btimer.c",
		"clock/ckinit.c",
		"console/debugputs.c",
		"console/erc32_console.c",
		"gnatsupp/gnatsupp.c",
		"net/erc32sonic.c",
		"start/boardinit.S",
		"start/bspdelay.c",
		"start/bspidle.c",
		"start/bspstart.c",
		"start/erc32mec.c",
		"start/setvec.c",
		"start/spurious.c",
	]

	ctx.bsp.source(
		source,
		features	= "src_include src_include_rtems src_include_score src_include_bsp src_include_bsp_common src_include_bsp_shared src_include_networking",
	)