NetBSD/usr.bin/hexdump/Makefile

17 lines
331 B
Makefile
Raw Normal View History

2006-10-08 21:52:28 +04:00
# $NetBSD: Makefile,v 1.12 2006/10/08 17:52:28 peter Exp $
1997-10-18 17:53:56 +04:00
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
1993-03-21 12:45:37 +03:00
PROG= hexdump
SRCS= conv.c display.c hexdump.c hexsyntax.c odsyntax.c parse.c
1994-12-22 15:29:38 +03:00
MAN= hexdump.1 od.1
2001-12-07 18:14:29 +03:00
WARNS= 2
1993-03-21 12:45:37 +03:00
2006-08-29 21:00:28 +04:00
.ifndef HOSTPROG
2006-08-26 22:17:41 +04:00
LDADD+=-lutil
DPADD+=${LIBUTIL}
2003-03-07 04:14:30 +03:00
LINKS= ${BINDIR}/hexdump ${BINDIR}/od
.endif
.include <bsd.prog.mk>