summaryrefslogtreecommitdiffstats
path: root/c_user/wscript
blob: 32658ebfaf59fa0f70f92956b41848ec5fc6acea (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":					"C User",
		"FILE_DOC":				"rtemsc_user",
	}

	cmd_build(ctx, sub)