blob: 8b3aeab95ed01be8740762cf4b97af0aa817cc0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: Makefile,v 1.1 2014/02/24 07:23:43 skrll Exp $
NOMAN= # defined
PROG= mkboot
SRCS= mkboot.c
# We don't use libbfd, but we do use the BFD ELF header files because
# they are somewhat more portable than NetBSD's own elf.h.
BFDTOP= ${NETBSDSRCDIR}/external/gpl3/binutils/dist
CPPFLAGS= -I${BFDTOP}/include
CPPFLAGS+= -DATTRIBUTE_PACKED=
.include <bsd.prog.mk>
|