Upgrade to new build system.
This commit is contained in:
parent
a2ca4f8122
commit
0cc4d09d65
6
make.sh
6
make.sh
|
@ -64,6 +64,7 @@ OUTPUT_DIRS="obj html"
|
||||||
# none no special processing happens before each file
|
# none no special processing happens before each file
|
||||||
# C #line directives are inserted before each file
|
# C #line directives are inserted before each file
|
||||||
# and VERSION, VERMAJOR etc. are #defined
|
# and VERSION, VERMAJOR etc. are #defined
|
||||||
|
# Ch Like C, but for header files (no VERSION #defines)
|
||||||
#
|
#
|
||||||
make_monolithic() {
|
make_monolithic() {
|
||||||
if [ $# -ne 2 ]
|
if [ $# -ne 2 ]
|
||||||
|
@ -82,6 +83,9 @@ make_monolithic() {
|
||||||
then
|
then
|
||||||
HASHLINE=1
|
HASHLINE=1
|
||||||
VERDEFINE=1
|
VERDEFINE=1
|
||||||
|
elif [ "$2" == "Ch" ]
|
||||||
|
then
|
||||||
|
HASHLINE=1
|
||||||
elif [ "$2" == "none" ]
|
elif [ "$2" == "none" ]
|
||||||
then
|
then
|
||||||
HASHLINE=0 # dummy command
|
HASHLINE=0 # dummy command
|
||||||
|
@ -261,7 +265,7 @@ else
|
||||||
targets="$@"
|
targets="$@"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for func in "${targets}"
|
for func in ${targets}
|
||||||
do
|
do
|
||||||
case ${func} in
|
case ${func} in
|
||||||
clean)
|
clean)
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
build.c++.app
|
build.c++.app
|
||||||
build.c++.lib
|
build.c++.lib
|
||||||
|
build.c++.qtapp
|
||||||
build.c++.tests
|
build.c++.tests
|
||||||
build.c.app
|
build.c.app
|
||||||
build.c.lib
|
build.c.lib
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* libCStreamedXML/src/clib/BottomHeader.h
|
/* libCStreamedXML/src/libCStreamedXML/BottomHeader.h
|
||||||
*
|
*
|
||||||
* (c)2006, Laurence Withers, <l@lwithers.me.uk>.
|
* (c)2006, Laurence Withers, <l@lwithers.me.uk>.
|
||||||
* Released under the GNU GPLv2. See file COPYING or
|
* Released under the GNU GPLv2. See file COPYING or
|
||||||
|
|
|
@ -31,7 +31,7 @@ then
|
||||||
echo " Compiling"
|
echo " Compiling"
|
||||||
|
|
||||||
SONAME="${libCStreamedXML_BASE}.so.${SOMAJOR}.${SOMINOR}"
|
SONAME="${libCStreamedXML_BASE}.so.${SOMAJOR}.${SOMINOR}"
|
||||||
do_cmd ${CC} ${CFLAGS} -shared -fpic -o "${libCStreamedXML}" \
|
do_cmd ${CC} ${CFLAGS} -Iobj -shared -fpic -o "${libCStreamedXML}" \
|
||||||
-Wl,-soname,${SONAME} \
|
-Wl,-soname,${SONAME} \
|
||||||
${SRC} ${SO_EXTRA} || return 1
|
${SRC} ${SO_EXTRA} || return 1
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ MONOLITHIC_TESTS="src/libCStreamedXML/build.lib src/libCStreamedXML/build.monoli
|
||||||
if [ -z "${libCStreamedXML_MONOLITHIC}" ]
|
if [ -z "${libCStreamedXML_MONOLITHIC}" ]
|
||||||
then
|
then
|
||||||
MONOLITHIC_SOURCE="$(echo src/libCStreamedXML/{TopHeader,types,functions,BottomHeader}.h)"
|
MONOLITHIC_SOURCE="$(echo src/libCStreamedXML/{TopHeader,types,functions,BottomHeader}.h)"
|
||||||
make_monolithic ${HDR} C || return 1
|
make_monolithic ${HDR} Ch || return 1
|
||||||
|
|
||||||
MONOLITHIC_SOURCE="$(echo src/libCStreamedXML/{TopSource,buffer,defaults,parser}.c)"
|
MONOLITHIC_SOURCE="$(echo src/libCStreamedXML/{TopSource,buffer,defaults,parser}.c)"
|
||||||
make_monolithic ${SRC} C || return 1
|
make_monolithic ${SRC} C || return 1
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# libCStreamedXML/src/lib/clib/pkgconf.in
|
# libStreamedXML/src/lib/libCStreamedXML/pkgconf.in
|
||||||
#
|
#
|
||||||
# Metadata file for pkg-config
|
# Metadata file for pkg-config
|
||||||
# ( http://www.freedesktop.org/software/pkgconfig/ )
|
# ( http://www.freedesktop.org/software/pkgconfig/ )
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# libCStreamedXML/src/libCStreamedXML/soversion
|
# libStreamedXML/src/libCStreamedXML/soversion
|
||||||
#
|
#
|
||||||
# (c)2006, Laurence Withers, <l@lwithers.me.uk>.
|
# (c)2006, Laurence Withers, <l@lwithers.me.uk>.
|
||||||
# Released under the GNU GPLv2. See file COPYING or
|
# Released under the GNU GPLv2. See file COPYING or
|
||||||
|
@ -14,4 +14,4 @@ SOMAJOR=0
|
||||||
SOMINOR=0
|
SOMINOR=0
|
||||||
|
|
||||||
# SOMICRO is bumped every time there is a binary-compatible release.
|
# SOMICRO is bumped every time there is a binary-compatible release.
|
||||||
SOMICRO=0
|
SOMICRO=1
|
||||||
|
|
|
@ -31,7 +31,7 @@ then
|
||||||
echo " Compiling"
|
echo " Compiling"
|
||||||
|
|
||||||
SONAME="${libStreamedXML_BASE}.so.${SOMAJOR}.${SOMINOR}"
|
SONAME="${libStreamedXML_BASE}.so.${SOMAJOR}.${SOMINOR}"
|
||||||
do_cmd ${CXX} ${CFLAGS} -shared -fpic -o "${libStreamedXML}" \
|
do_cmd ${CXX} ${CFLAGS} -Iobj -shared -fpic -o "${libStreamedXML}" \
|
||||||
-Wl,-soname,${SONAME} \
|
-Wl,-soname,${SONAME} \
|
||||||
${SRC} ${SO_EXTRA} || return 1
|
${SRC} ${SO_EXTRA} || return 1
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ MONOLITHIC_TESTS="src/libStreamedXML/build.lib src/libStreamedXML/build.monolith
|
||||||
if [ -z "${libStreamedXML_MONOLITHIC}" ]
|
if [ -z "${libStreamedXML_MONOLITHIC}" ]
|
||||||
then
|
then
|
||||||
MONOLITHIC_SOURCE="$(echo src/libStreamedXML/{TopHeader,ForwardDeclare,Exceptions,Callback,Parser,Decoder,BottomHeader}.h)"
|
MONOLITHIC_SOURCE="$(echo src/libStreamedXML/{TopHeader,ForwardDeclare,Exceptions,Callback,Parser,Decoder,BottomHeader}.h)"
|
||||||
make_monolithic ${HDR} C || return 1
|
make_monolithic ${HDR} Ch || return 1
|
||||||
|
|
||||||
MONOLITHIC_SOURCE="$(echo src/libStreamedXML/{TopSource,Exceptions,Parser,Decoder}.cpp)"
|
MONOLITHIC_SOURCE="$(echo src/libStreamedXML/{TopSource,Exceptions,Parser,Decoder}.cpp)"
|
||||||
make_monolithic ${SRC} C || return 1
|
make_monolithic ${SRC} C || return 1
|
||||||
|
|
|
@ -14,4 +14,4 @@ SOMAJOR=0
|
||||||
SOMINOR=1
|
SOMINOR=1
|
||||||
|
|
||||||
# SOMICRO is bumped every time there is a binary-compatible release.
|
# SOMICRO is bumped every time there is a binary-compatible release.
|
||||||
SOMICRO=0
|
SOMICRO=1
|
||||||
|
|
2
version
2
version
|
@ -12,7 +12,7 @@
|
||||||
# suffixed with a string.
|
# suffixed with a string.
|
||||||
VERMAJOR=1
|
VERMAJOR=1
|
||||||
VERMINOR=2
|
VERMINOR=2
|
||||||
VERMICRO=1
|
VERMICRO=2
|
||||||
VEREXTRA=""
|
VEREXTRA=""
|
||||||
|
|
||||||
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
|
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
|
||||||
|
|
Loading…
Reference in New Issue