blob: dd7e3a3726bf10d296452778e5dd86ac3c358c77 [file] [log] [blame]
Junxiao Shif7191242015-03-19 05:53:41 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2top = '..'
3
4def configure(conf):
5 for subdir in conf.path.ant_glob(['*'], dir=True, src=False):
6 conf.recurse(str(subdir), mandatory=False)
7
8def build(bld):
9 for subdir in bld.path.ant_glob(['*'], dir=True, src=False):
10 bld.recurse(str(subdir))