mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 09:57:15 +01:00
13 lines
223 B
Python
13 lines
223 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# Thomas Nagy, 2010 (ita)
|
|
|
|
"""
|
|
See README.txt
|
|
"""
|
|
|
|
def build(bld):
|
|
bld.program(source='main.c', target='app', use='mylib', cflags=['-O2'])
|
|
bld.stlib(source='a.c', target='mylib')
|
|
|