NetBSD/libexec/makewhatis/Makefile
junyoung 937e5f4f83 Previous commit broke the normal build; this should really fix the
problem, toolchain/18020. From Frederick Bruckman <fredb@immanent.net>.
2002-09-04 16:57:47 +00:00

20 lines
317 B
Makefile

# $NetBSD: Makefile,v 1.14 2002/09/04 16:57:47 junyoung Exp $
.ifndef HOSTPROG
.include <bsd.obj.mk>
.endif
PROG= makewhatis
SRCS= makewhatis.c config.c
.PATH: ${NETBSDSRCDIR}/usr.bin/man
CPPFLAGS+=-I${NETBSDSRCDIR}/usr.bin
MAN= ${PROG}.8
.ifndef HOSTPROG
DPADD= ${LIBZ}
LDADD= -lz
.include <bsd.prog.mk>
.endif