mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-25 11:19:52 +01:00
14 lines
253 B
Python
14 lines
253 B
Python
#! /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
|
|
bld.program(
|
|
source = 'main.c test.S',
|
|
target = 'asmtest',
|
|
includes = '.')
|
|
|