Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[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.2 2003/06/17 04:26:52 dillon Exp $
4 #
5
6 MAINTAINER=markm@FreeBSD.org
7
8 LIB=    wrap
9 SHLIB_MAJOR= 3
10 SHLIB_MINOR= 0
11 INCS=   tcpd.h
12 MAN=    hosts_access.3
13 MAN+=   hosts_access.5 hosts_options.5
14
15 .PATH:  ${.CURDIR}/../../contrib/tcp_wrappers
16
17 CFLAGS+=-DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 \
18         -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS \
19         -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
20         -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
21         -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME
22 .if !defined(NOINET6)
23 CFLAGS+=-DINET6
24 .endif
25
26 SRCS=   clean_exit.c diag.c eval.c fix_options.c fromhost.c \
27         hosts_access.c hosts_ctl.c misc.c myvsyslog.c options.c \
28         percent_m.c percent_x.c refuse.c rfc931.c shell_cmd.c \
29         socket.c tli.c update.c workarounds.c libvars.c
30
31 .include <bsd.lib.mk>