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