1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# makefile for Qualcomm popper
# $Id: make.44bsd,v 1.1.1.1 1997/03/14 05:01:06 qpop Exp $
# Defines are described in the INSTALL document.
PROG=popper popauth
MAN8=popper.8 popauth.8
SRCS= pop_dele.c pop_dropcopy.c pop_get_command.c pop_get_subcommand.c \
pop_init.c pop_last.c pop_list.c pop_log.c pop_lower.c pop_msg.c \
pop_parse.c pop_pass.c pop_quit.c pop_rset.c pop_send.c pop_stat.c \
pop_updt.c pop_user.c pop_xtnd.c pop_xmit.c popper.c pop_bull.c \
xtnd_xlst.c pop_uidl.c pop_rpop.c pop_apop.c md5.c pop_auth.c
#SRCS+= flock.c mktemp.c
BINDIR=/usr/local/libexec
MANDIR=/usr/local/man/man
#LDADD+= -lcrypt -lndbm
CFLAGS+=-DHAVE_PARAM_H
# if you want APOP support, uncomment the next line
#CFLAGS+=-DAPOP=\"/etc/pop.auth\" -DPOPUID=\"pop\"
# if you want RPOP support, uncomment the next line
#CFLAGS+=-DRPOP
# if you want to block POP access for anyone in /etc/ftpusers, uncomment
#CFLAGS+=-DNONAUTHFILE=\"/etc/ftpusers\"
.include <bsd.prog.mk>
|