25 lines
417 B
Makefile
25 lines
417 B
Makefile
# $NetBSD: Makefile,v 1.1 2009/12/13 08:50:56 mrg Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
.include <bsd.init.mk>
|
|
|
|
CPPFLAGS+= -DELFSIZE=32 -DELF32_COMPAT
|
|
LIB= ldd_elf32_compat
|
|
|
|
# XXX Force one member
|
|
SRCS= dummy.c
|
|
|
|
LIBISPRIVATE= yes
|
|
.PATH: ${.CURDIR}/..
|
|
|
|
.ifdef COMPAT_MLIBDIR
|
|
MLIBDIR= ${COMPAT_MLIBDIR}
|
|
CPPFLAGS+= -DRTLD_ARCH_SUBDIR=\"${MLIBDIR}\"
|
|
.endif
|
|
|
|
.ifdef MLIBDIR
|
|
.include "../Makefile.elf"
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|