blob: 9095dd9345908eea9983c9982c8e845a26d99869 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// $Id$
include "vacpp_setup.icc"
option
link(libSearchPath, platformLibSearchPath),
incl(searchPath, ".."),
link(exportAll),
link(linkwithsharedlib),
link(linkWithMultiThreadLib,yes),
link(debug)
{
target type ( shr ) "shr.o"
{
run after sources("shr.o") targets ("libTest_Output.a") "ar -r -u libTest_Output.a shr.o", "rm -rf shr.o"
run cleanup "rm -rf libTest_Output.a shr.o"
source type (cpp) "Test_Output.cpp"
if ($__IBMCPP__ >= 500) {
option macros(global) {
source type (hpp) "test_config.h"
}
}
source type (lib) platformLinkLibs
}
}
|