1993-08-01 09:37:30 +04:00
|
|
|
# from: @(#)Makefile 5.15 (Berkeley) 7/1/90
|
|
|
|
# $Id: Makefile,v 1.4 1993/08/01 05:39:26 mycroft Exp $
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
PROG= ftpd
|
1993-04-26 18:33:28 +04:00
|
|
|
CFLAGS+=-I${.CURDIR}/../../usr.bin/ftp -DSETPROCTITLE
|
1993-03-21 12:45:37 +03:00
|
|
|
SRCS= ftpd.c ftpcmd.c glob.c logwtmp.c popen.c vers.c
|
|
|
|
MAN8= ftpd.0
|
|
|
|
CLEANFILES+=ftpcmd.c y.tab.h
|
|
|
|
.PATH: ${.CURDIR}/../../usr.bin/ftp
|
1993-04-26 18:33:28 +04:00
|
|
|
.ifndef EXPORTABLE_SYSTEM
|
|
|
|
DPADD+= ${LIBCRYPT}
|
|
|
|
LDADD+= -lcrypt
|
|
|
|
.endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|