waf/demos/asm/wscript

13 lines
228 B
Python

#! /usr/bin/env python
# encoding: utf-8
def configure(conf):
conf.load('gcc gas')
def build(bld):
# http://waf.googlecode.com/svn/docs/apidocs/tools/asm.html
bld.program(
source = 'main.c test.S',
target = 'asmtest')