Makefile revision 1.2
1#	$NetBSD: Makefile,v 1.2 2008/04/30 21:15:33 garbled Exp $
2
3BINDIR=	/usr/mdec
4PROG=	mkbootimage
5SRCS=	mkbootimage.c byteorder.c
6NOMAN=	# defined
7
8# We don't use libbfd, but we do use the BFD ELF header files because
9# they are somewhat more portable than NetBSD's own elf.h.
10BFDTOP=	${NETBSDSRCDIR}/gnu/dist/binutils
11
12LIBSA=${.CURDIR}/../../../../lib/libsa
13
14.PATH.c: ${LIBSA}
15
16CPPFLAGS= -I${LIBSA} -I${.CURDIR} -I${BFDTOP}/include
17DPADD=	${LIBZ}
18LDADD=	-lz
19
20.include <bsd.prog.mk>
21