1 # $NetBSD: Makefile,v 1.6.12.1 2017/12/03 11:35:58 jdolecek Exp $ 2 3 WARNS= 4 4 PROG= installboot 5 NOMAN= # defined 6 SRCS= installboot.c disklabel.c 7 BINDIR= /usr/mdec 8 .ifndef SMALLPROG 9 CPPFLAGS+= -DCHECK_OS_BOOTVERSION -DNO_USAGE 10 LDADD= -lkvm 11 .endif 12 13 # XXX needs proper struct or union to calculate boot sector uint16_t cksums 14 CFLAGS+= -fno-strict-aliasing 15 16 .include <bsd.prog.mk> 17