Skip to content
Snippets Groups Projects
Allwmake 377 B
Newer Older
cd ${0%/*} || exit 1    # run from this directory

READLINE=0
if [ -f /usr/include/readline/readline.h ]; then
    echo "Found readline/readline.h include file. Enabling readline support."
    READLINE=1
    export READLINELINK="-lreadline -lncurses"
    break
fi
export READLINE
henry's avatar
henry committed
wmake

# ----------------------------------------------------------------- end-of-file