summaryrefslogtreecommitdiffstats
path: root/bsp_howto/wscript
blob: 16f000ed8c5b652af1b94ac05f850ba4d27f10ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from sys import path
from os.path import abspath
path.append(abspath('../common/'))

from waf import cmd_configure, cmd_build

def configure(ctx):
	cmd_configure(ctx)

def build(ctx):

	sub = {
		"VERSION":				"1.0",
		"RELEASE":				"5.0.0",
		"DOC":					"BSP Howto",
		"FILE_DOC":				"rtemsbsp_howto",
	}

	cmd_build(ctx, sub)