#!/bin/sh
# Generated by install.sh
PREFIX="/usr"
BINS="/usr/bin/"
LIBS="${prefix}/lib/i386-linux-gnu"
INCLUDES="/usr/include/"
SHARE="/usr/share//raydium"

includes() {
echo -n "-I$INCLUDES -I$INCLUDES/raydium/php/ -I$INCLUDES/raydium/php/main/ -I$INCLUDES/raydium/php/Zend -I$INCLUDES/raydium/php/TSRM -I$INCLUDES/raydium/ode/include/ "
}
libs() {
echo -n "-L$LIBS -lraydium "
}
cflags() {
echo -n "-DFORCE_LIBRAYDIUM "
includes
}
if [ "$1" = "--libs" ]; then
    libs
    echo ""
    exit 0
fi
if [ "$1" = "--includes" ]; then
    includes
    echo ""
    exit 0
fi
if [ "$1" = "--cflags" ]; then
    cflags
    echo ""
    exit 0
fi
echo "Usage: $0 [--libs|--includes|--cflags]"
exit 1

