summaryrefslogtreecommitdiffstats
path: root/cpu_supplement/wscript
blob: 906be4677431849e5cb3330c6dfa732f547b8195 (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":					"CPU Supplement",
		"FILE_DOC":				"rtemcpu_supplement",
	}

	cmd_build(ctx, sub)