summaryrefslogtreecommitdiffstats
path: root/new_chapters/wscript
blob: 650b8e57eb5414cc156f4d14629141ec68ca666f (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":					"New Chapters",
		"FILE_DOC":				"rtemsnew_chapters",
	}

	cmd_build(ctx, sub)