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