blob: 53f513f4c0c315f85c0217b66c0fd8e7004c1e60 (
plain)
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
33
34
35
36
37
38
|
# $OpenBSD: Makefile,v 1.11 1997/06/01 06:40:34 downsj Exp $
# $NetBSD: Makefile,v 1.13 1996/02/16 02:07:41 cgd Exp $
# @(#)Makefile 8.2 (Berkeley) 4/4/94
PROG= ftpd
.ifdef (${MACHINE} == "powerpc")
# bug in compiler causes ftpd.o to fail to compile with optimization.
CFLAGS= ${DEBUG}
.endif
CFLAGS+=-DHASSETPROCTITLE -Dunix
SRCS= ftpd.c ftpcmd.c logutmp.c logwtmp.c popen.c
MAN= ftpd.8
CLEANFILES+=ftpcmd.c y.tab.h
.PATH: ${.CURDIR}/../../usr.bin/ftp
.include <bsd.own.mk>
.if (${SKEY} == "yes")
CFLAGS+=-DSKEY
LDADD+= -lskey
DPADD+= ${LIBSKEY}
.endif
.if (${KERBEROS} == "yes")
SRCS+= klogin.c
.PATH: ${.CURDIR}/../../usr.bin/login
CFLAGS+= -DKERBEROS
LDADD+= -lkrb -ldes
DPADD+= ${LIBKRB} ${LIBKRB}
.endif
.if (${TCP_WRAPPERS} == "yes")
CFLAGS+=-DTCPWRAPPERS
LDADD+= -lwrap
DPADD+= ${LIBWRAP}
.endif
.include <bsd.prog.mk>
|