MAINTAINER lines in Makefile's are no longer applicable, remove them.
[dragonfly.git] / lib / libwrap / Makefile
1 #
2 # $FreeBSD: src/lib/libwrap/Makefile,v 1.5.2.3 2002/07/22 14:21:50 ru Exp $
3 # $DragonFly: src/lib/libwrap/Makefile,v 1.3 2004/01/31 06:56:39 dillon Exp $
4 #
5
6 LIB=    wrap
7 SHLIB_MAJOR= 3
8 SHLIB_MINOR= 0
9 INCS=   tcpd.h
10 MAN=    hosts_access.3
11 MAN+=   hosts_access.5 hosts_options.5
12
13 .PATH:  ${.CURDIR}/../../contrib/tcp_wrappers
14
15 CFLAGS+=-DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 \
16         -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS \
17         -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
18         -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
19         -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME
20 .if !defined(NOINET6)
21 CFLAGS+=-DINET6
22 .endif
23
24 SRCS=   clean_exit.c diag.c eval.c fix_options.c fromhost.c \
25         hosts_access.c hosts_ctl.c misc.c myvsyslog.c options.c \
26         percent_m.c percent_x.c refuse.c rfc931.c shell_cmd.c \
27         socket.c tli.c update.c workarounds.c libvars.c
28
29 .include <bsd.lib.mk>