You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
309 B
Python
16 lines
309 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# Thomas Nagy, 2015 (ita)
|
|
|
|
VERSION='0.0.1'
|
|
APPNAME='strace_test'
|
|
|
|
from waflib import Logs
|
|
def configure(conf):
|
|
Logs.warn("run with 'waf --zones=deps'")
|
|
conf.load('stracedeps')
|
|
|
|
def build(bld):
|
|
bld(rule='${SRC[0].abspath()}', source='foo.sh', always=True, shell=1)
|
|
|