35 lines
700 B
Makefile
35 lines
700 B
Makefile
# $NetBSD: Makefile,v 1.40 2000/03/05 06:12:19 lukem Exp $
|
|
# @(#)Makefile 8.2 (Berkeley) 4/4/94
|
|
|
|
SRCTOP= ../..
|
|
.include <bsd.crypto.mk>
|
|
|
|
PROG= ftpd
|
|
SRCS= conf.c ftpd.c ftpcmd.y logutmp.c logwtmp.c popen.c
|
|
CPPFLAGS+=-DHASSETPROCTITLE
|
|
DPADD+= ${LIBCRYPT} ${LIBUTIL}
|
|
LDADD+= -lcrypt -lutil
|
|
MAN= ftpd.conf.5 ftpusers.5 ftpd.8
|
|
MLINKS= ftpusers.5 ftpchroot.5
|
|
|
|
# for `internal' ls
|
|
SRCS+= ls.c cmp.c print.c stat_flags.c util.c
|
|
.PATH: ${.CURDIR}/../../bin/ls
|
|
|
|
CPPFLAGS+=-DINET6
|
|
.include <bsd.own.mk>
|
|
|
|
.ifdef SKEY
|
|
CPPFLAGS+=-DSKEY
|
|
DPADD+= ${LIBSKEY}
|
|
LDADD+= -lskey
|
|
.endif
|
|
|
|
ftpd.o ftpcmd.o: version.h
|
|
|
|
.if defined(CRYPTOPATH)
|
|
.sinclude "${CRYPTOPATH}/libexec/ftpd/Makefile.frag"
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|