Switch to waf build system, first attempt

This commit is contained in:
Justin C. Miller
2018-05-04 19:05:19 -07:00
parent 33012f35ef
commit 0c553b3406
12 changed files with 501 additions and 325 deletions

View File

@@ -1,2 +0,0 @@
MOD_NAME := kutil
include modules.mk

14
src/modules/kutil/wscript Normal file
View File

@@ -0,0 +1,14 @@
def configure(ctx):
pass
def build(bld):
sources = bld.path.ant_glob("**/*.cpp")
bld.stlib(
source = sources,
name = 'kutil',
target = 'kutil',
)
# vim: ft=python et