21 lines
509 B
Makefile
21 lines
509 B
Makefile
# $NetBSD: Makefile,v 1.4 2010/06/19 23:11:10 riz Exp $
|
|
|
|
HOSTPROGNAME= nbdisklabel-${MAKEWRAPPERMACHINE}
|
|
HOST_SRCDIR= sbin/disklabel
|
|
HOST_SRCS= getcap.c disklabel.c bswap.c
|
|
|
|
NOMAN= # defined
|
|
|
|
.include <bsd.endian.mk>
|
|
|
|
.if ${TARGET_ENDIANNESS} == "1234"
|
|
CPPFLAGS+= -DTARGET_BYTE_ORDER=LITTLE_ENDIAN
|
|
.elif ${TARGET_ENDIANNESS} == "4321"
|
|
CPPFLAGS+= -DTARGET_BYTE_ORDER=BIG_ENDIAN
|
|
.endif
|
|
|
|
.include "${.CURDIR}/../Makefile.nbincludes"
|
|
.include "${.CURDIR}/../Makefile.host"
|
|
|
|
.PATH: ${.CURDIR}/../../lib/libc/gen
|