freebsd-dev/libexec/rshd/Makefile
Kris Kennaway 9357f4121d Lock down with WFORMAT?=1, with overrides in the subdirectories which
are not yet warning-clean.  Tested on i386 and alpha.
2002-02-04 02:33:51 +00:00

24 lines
299 B
Makefile

# From: @(#)Makefile 8.1 (Berkeley) 6/4/93
# $FreeBSD$
PROG= rshd
SRCS= rshd.c
MAN= rshd.8
#CFLAGS+= -DCRYPT
WFORMAT=0
DPADD+= ${LIBUTIL}
LDADD+= -lutil
.if !defined(NOPAM)
CFLAGS+= -DUSE_PAM
DPADD+= ${LIBPAM}
LDADD+= ${MINUSLPAM}
.endif
# IPv6 support
CFLAGS+= -DINET6
.include <bsd.prog.mk>