15 lines
308 B
Makefile
15 lines
308 B
Makefile
# $NetBSD: Makefile,v 1.9 2003/05/18 07:57:34 lukem Exp $
|
|
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
PROG= hexdump
|
|
SRCS= conv.c display.c hexdump.c hexsyntax.c odsyntax.c parse.c
|
|
MAN= hexdump.1 od.1
|
|
WFORMAT= 1
|
|
WARNS= 2
|
|
|
|
.ifndef HOSTPROG
|
|
LINKS= ${BINDIR}/hexdump ${BINDIR}/od
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|