mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-05 22:28:57 +02:00
13 lines
355 B
Python
13 lines
355 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# WARNING! Do not edit! http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file
|
|
|
|
import waflib.Tools.asm
|
|
from waflib.Tools import ar
|
|
def configure(conf):
|
|
conf.find_program(['gas','gcc'],var='AS')
|
|
conf.env.AS_TGT_F=['-c','-o']
|
|
conf.env.ASLNK_TGT_F=['-o']
|
|
conf.find_ar()
|
|
conf.load('asm')
|