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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
waf_old/playground/stracedeps/wscript

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)