mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-23 02:16:01 +01:00
24 lines
379 B
Plaintext
24 lines
379 B
Plaintext
|
#! /usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
# Mark Coggeshall 2010
|
||
|
|
||
|
VERSION = '1.0.0'
|
||
|
APPNAME = 'sastest'
|
||
|
|
||
|
top = '.'
|
||
|
out = 'build'
|
||
|
|
||
|
def configure(ctx):
|
||
|
ctx.load('sas')
|
||
|
|
||
|
def build(ctx):
|
||
|
sastester = ctx(
|
||
|
features = 'sas',
|
||
|
name = 'SAStest',
|
||
|
type = 'sas',
|
||
|
source = 'src/sastest.sas',
|
||
|
logdir = 'log',
|
||
|
lstdir = 'lst',
|
||
|
deps = ['data/mydata.csv']
|
||
|
)
|