ebffaa4250
. move crypt() from minix-specific to netbsd -lcrypt
15 lines
317 B
Makefile
15 lines
317 B
Makefile
# Makefile for ftpd
|
|
#
|
|
# 01/25/96 Initial Release Michael Temari, <Michael@TemWare.Com>
|
|
# 2005-02-25 version 2.00
|
|
|
|
PROG= in.ftpd
|
|
SRCS= ftpd.c access.c file.c net.c
|
|
MAN= ftpd.8
|
|
SCRIPTS= ftpdsh
|
|
FILES= setup.anonftp
|
|
.if defined(NBSD_LIBC) && (${NBSD_LIBC} != "no")
|
|
LDADD+= -lcrypt
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|