You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
397 B
21 lines
397 B
1 year ago
|
#! /usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
# a1batross, mittorn, 2018
|
||
|
|
||
|
def options(opt):
|
||
|
pass
|
||
|
|
||
|
def configure(conf):
|
||
|
pass
|
||
|
|
||
|
def build(bld):
|
||
|
bld(source = bld.path.ant_glob('*.c'),
|
||
|
target = 'xar',
|
||
|
features = 'c cprogram',
|
||
|
includes = '.',
|
||
|
use = 'public filesystem_includes',
|
||
|
rpath = bld.env.DEFAULT_RPATH,
|
||
|
install_path = bld.env.BINDIR,
|
||
|
subsystem = bld.env.CONSOLE_SUBSYSTEM
|
||
|
)
|