2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-25 11:19:52 +01:00
waf/demos/asm/wscript

14 lines
253 B
Plaintext
Raw Normal View History

2011-09-10 11:13:51 +02:00
#! /usr/bin/env python
# encoding: utf-8
def configure(conf):
conf.load('gcc gas')
def build(bld):
# http://docs.waf.googlecode.com/git/apidocs_16/tools/asm.html
2011-09-10 11:13:51 +02:00
bld.program(
2012-05-02 09:23:58 +02:00
source = 'main.c test.S',
target = 'asmtest',
includes = '.')
2011-09-10 11:13:51 +02:00