NetBSD/libexec/ftpd/Makefile

35 lines
691 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.39 1999/12/18 05:51:34 lukem Exp $
# @(#)Makefile 8.2 (Berkeley) 4/4/94
1993-03-21 12:45:37 +03:00
1999-07-13 02:04:09 +04:00
SRCTOP= ../..
.include <bsd.crypto.mk>
1993-03-21 12:45:37 +03:00
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
1993-10-07 05:16:39 +03:00
CPPFLAGS+=-DINET6
.include <bsd.own.mk>
1993-03-21 12:45:37 +03:00
1997-10-12 17:08:41 +04:00
.ifdef SKEY
CPPFLAGS+=-DSKEY
DPADD+= ${LIBSKEY}
LDADD+= -lskey
1997-10-12 17:09:11 +04:00
.endif
1997-10-12 17:08:41 +04:00
ftpd.o: version.h
1999-07-13 02:04:09 +04:00
.if defined(CRYPTOPATH)
.sinclude "${CRYPTOPATH}/libexec/ftpd/Makefile.frag"
1999-07-13 02:04:09 +04:00
.endif
.include <bsd.prog.mk>