xref: /openbsd/usr.sbin/mkuboot/Makefile (revision 5af055cd)
1#	$OpenBSD: Makefile,v 1.3 2013/10/28 09:00:06 patrick Exp $
2
3.if ${MACHINE} == "armv7"
4
5BINDIR=	/usr/sbin
6PROG=	mkuboot
7SRCS=	mkuboot.c copy_elf32.c copy_elf64.c
8DPADD=	${LIBZ}
9LDADD=	-lz
10CFLAGS=	-DMACHINE_ARCH=\"${MACHINE_ARCH}\"
11
12.else
13
14NOPROG=yes
15
16.endif
17
18MAN=	mkuboot.8
19
20.include <bsd.prog.mk>
21