diff options
Diffstat (limited to 'progs/util/SConscript')
| -rw-r--r-- | progs/util/SConscript | 15 | 
1 files changed, 15 insertions, 0 deletions
diff --git a/progs/util/SConscript b/progs/util/SConscript new file mode 100644 index 0000000000..8ad2466291 --- /dev/null +++ b/progs/util/SConscript @@ -0,0 +1,15 @@ +Import('env') + +env = env.Clone() + +util = env.StaticLibrary( +    target = ['util'], +    source = [ +        'readtex.c', +        'trackball.c', +        'showbuffer.c', +        'shaderutil.c', +    ], +) + +Export('util')  | 
