Alexandros Frantzis | cb5ed6f | 2012-06-11 13:42:17 +0300 | [diff] [blame] | 1 | #! /usr/bin/env python |
2 | # encoding: utf-8 | ||||
3 | # WARNING! Do not edit! http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file | ||||
4 | |||||
5 | from waflib.Configure import conf | ||||
6 | def find_ar(conf): | ||||
7 | conf.load('ar') | ||||
8 | def configure(conf): | ||||
9 | conf.find_program('ar',var='AR') | ||||
10 | conf.env.ARFLAGS='rcs' | ||||
11 | |||||
12 | conf(find_ar) |