
import modules ;

local dll-suffix = so ;
if [ modules.peek : OS ] in NT CYGWIN
{
    dll-suffix = dll ;
}

project ext ;

lib a : 
    : <file>bin/gcc/debug/a.$(dll-suffix) <variant>debug
    :
    : <include>debug
    ;
    
lib a :
    : <file>bin/gcc/release/a.$(dll-suffix) <variant>release
    :
    : <include>release
    ;
    