#!/bin/sh

# Compile aftp with GNU Readline v1.x library (line editor and history)
# (if you have libreadline, try this)
# Note: GNU readline (librl) is not included into this package, you can
#       get it from sunsite.unc.edu/pub/Linux/libs/ui/librl-1.*.tar.gz

gcc -o aftp -D__unix__ -DUSE_READLINE aftp1c.c ftplib.c -lrl -ltermcap

