blob: fd0b7d53e290f17530cfa0bcbcc97aaf6393f740 [file] [log] [blame]
Alexandros Frantziscb5ed6f2012-06-11 13:42:17 +03001#! /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
5from waflib.Configure import conf
6def find_ar(conf):
7 conf.load('ar')
8def configure(conf):
9 conf.find_program('ar',var='AR')
10 conf.env.ARFLAGS='rcs'
11
12conf(find_ar)