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