22 lines
723 B
Plaintext
22 lines
723 B
Plaintext
![]() |
# These are external variables, and shouldn't clash with anything else
|
||
|
# libutf8pp_MONOLITHIC
|
||
|
|
||
|
SRC="obj/libutf8++.cpp"
|
||
|
HDR="obj/utf8"
|
||
|
|
||
|
MONOLITHIC_TESTS="src/libutf8++/build.lib src/libutf8++/build.monolithic"
|
||
|
|
||
|
if [ -z "${libutf8pp_MONOLITHIC}" ]
|
||
|
then
|
||
|
MONOLITHIC_SOURCE="$(echo src/libutf8++/{TopHeader,ForwardDeclare,exception,string,{en,de}coder,BottomHeader}.h)"
|
||
|
make_monolithic ${HDR} C || return 1
|
||
|
|
||
|
MONOLITHIC_SOURCE="$(echo src/libutf8++/{TopSource,exception,string,{en,de}coder}.cpp)"
|
||
|
make_monolithic ${SRC} C || return 1
|
||
|
|
||
|
libutf8pp_MONOLITHIC=1
|
||
|
MONOLITHIC_DOC="${MONOLITHIC_DOC} ${HDR}"
|
||
|
fi
|
||
|
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
|
||
|
# vim: expandtab:ts=4:sw=4
|