Import('*')

target_name = 'mydll'
shlib = env.SharedLibrary( target=target_name, source=[ target_name + '.cpp' ] )
env.Alias( target_name, shlib )
