wscript_build (250B)
1 #! /usr/bin/env python 2 3 """ 4 Cycles in use should be detected (raise an error before the build starts) 5 """ 6 7 bld.shlib( 8 source = 'a.c', 9 target = 'CYC_1', 10 use = 'CYC_2' 11 ) 12 13 bld.shlib( 14 source = 'b.c', 15 target = 'CYC_2', 16 use = 'CYC_1' 17 ).post() 18