2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 01:46:15 +01:00
waf/build_system_kit/nostate/wscript
2011-09-10 11:13:51 +02:00

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')