Skip to content
Snippets Groups Projects
Allwmake 449 B
Newer Older
cd ${0%/*} || exit 1    # run from this directory
if [ -f /usr/include/readline/readline.h ]
then
    echo "Found readline/readline.h  --  enabling readline support."
    export READLINELINK="-lreadline -lncurses"
else
    # no readline/readline.h  --  disabling readline support
    export READLINE=0
    unset READLINELINK
henry's avatar
henry committed
wmake

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