aboutsummaryrefslogtreecommitdiff
path: root/waflib/Tools/ar.py
blob: fd0b7d53e290f17530cfa0bcbcc97aaf6393f740 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /usr/bin/env python
# encoding: utf-8
# WARNING! Do not edit! http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file

from waflib.Configure import conf
def find_ar(conf):
	conf.load('ar')
def configure(conf):
	conf.find_program('ar',var='AR')
	conf.env.ARFLAGS='rcs'

conf(find_ar)