freebsd-dev/usr.sbin/yp_mkdb/Makefile
Bill Paul 6290107b02 Import the new yp_mkdb. This one does what the old one does, but is
hopefully less grotty. Differences include:

- An extra flag, -c, for sending a YPPROC_CLEAR to ypserv(8) (which
  will become useful once I merge in the DB handle caching mods I've
  been working on).
- Checks for and signals duplicate keys.
- Handles line continuations.

As of now, there is no more GNU YP code in the tree.
1996-04-28 04:16:06 +00:00

14 lines
237 B
Makefile

# $Id$
PROG= yp_mkdb
SRCS= yp_mkdb.c yp_dblookup.c yp_dbwrite.c
MAN8= yp_mkdb.8
.PATH: ${.CURDIR}/../../libexec/ypxfr ${.CURDIR}/../ypserv
CFLAGS+= -Dyp_error=warnx
CFLAGS+= -I${.CURDIR}/../../usr.sbin/ypserv
.include <bsd.prog.mk>