1 # $NetBSD: Makefile,v 1.11 2006/08/29 17:00:28 christos Exp $ 2 # from: @(#)Makefile 8.1 (Berkeley) 6/6/93 3 4 PROG= hexdump 5 SRCS= conv.c display.c hexdump.c hexsyntax.c odsyntax.c parse.c 6 MAN= hexdump.1 od.1 7 WFORMAT= 1 8 WARNS= 2 9 10 .ifndef HOSTPROG 11 LDADD+=-lutil 12 DPADD+=${LIBUTIL} 13 14 LINKS= ${BINDIR}/hexdump ${BINDIR}/od 15 .endif 16 17 .include <bsd.prog.mk> 18