| Revision 1 (by moose, 2006/03/06 10:00:33) |
|---|
do ifopt --disable-release
RELEASE=disabled
else
ifopt --enable-release RELEASE=enabled
done
do ifopt --disable-debug
DEBUG=disabled
else
ifopt --enable-debug DEBUG=enabled
done
do ifopt --disable-profile
PROFILE=disabled
else
ifopt --enable-profile PROFILE=enabled
done
do ifopt --disable-shared
SHARED=disabled
else
ifopt --enable-shared SHARED=enabled
done
do ifopt --disable-static
STATIC=disabled
else
ifopt --enable-static STATIC=enabled
done
${APPEND_CONFIG} \# Library Version Config
${APPEND_CONFIG} RELEASE=${RELEASE}
${APPEND_CONFIG} DEBUG=${DEBUG}
${APPEND_CONFIG} PROFILE=${PROFILE}
${APPEND_CONFIG} SHARED=${SHARED}
${APPEND_CONFIG} STATIC=${STATIC}
${APPEND_CONFIG} ""