summaryrefslogtreecommitdiff
path: root/third_party/waf/waflib/extras/gob2.py
blob: 629ccdca8eddda4065ac20dd4c49870f1324a699 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /usr/bin/env python
# encoding: utf-8
# WARNING! Do not edit! https://waf.io/book/index.html#_obtaining_the_waf_file

#!/usr/bin/env python
# encoding: utf-8
# Ali Sabil, 2007

from waflib import TaskGen

TaskGen.declare_chain(
	name = 'gob2',
	rule = '${GOB2} -o ${TGT[0].bld_dir()} ${GOB2FLAGS} ${SRC}',
	ext_in = '.gob',
	ext_out = '.c'
)

def configure(conf):
	conf.find_program('gob2', var='GOB2')
	conf.env['GOB2FLAGS'] = ''