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

from waf import cmd_options_path, cmd_configure_path, cmd_build_path


def options(ctx):
		cmd_options_path(ctx)

def configure(ctx):
	cmd_configure_path(ctx)

def build(ctx):
	cmd_build_path(ctx)