summaryrefslogtreecommitdiff
path: root/usr.bin/ldd/elf64
diff options
context:
space:
mode:
authorKiyoshi Aman <kiyoshi.aman+adelie@gmail.com>2019-06-02 06:05:23 -0500
committerKiyoshi Aman <kiyoshi.aman+adelie@gmail.com>2019-06-02 06:05:23 -0500
commitf215c374244a1860e7f6c6b635d3c5176ee652ed (patch)
tree2be89c81de9f4dd03a3dbe8d9503d53bb9e5ac55 /usr.bin/ldd/elf64
parentf0c896bb3071e753e41afbf9a467793d4fe0ab2c (diff)
downloaduserland-f215c374244a1860e7f6c6b635d3c5176ee652ed.tar.gz
userland-f215c374244a1860e7f6c6b635d3c5176ee652ed.tar.bz2
userland-f215c374244a1860e7f6c6b635d3c5176ee652ed.tar.xz
userland-f215c374244a1860e7f6c6b635d3c5176ee652ed.zip
usr.bin/ldd: remove as it is handled elsewhere
Diffstat (limited to 'usr.bin/ldd/elf64')
-rw-r--r--usr.bin/ldd/elf64/Makefile51
1 files changed, 0 insertions, 51 deletions
diff --git a/usr.bin/ldd/elf64/Makefile b/usr.bin/ldd/elf64/Makefile
deleted file mode 100644
index f5cb2ab..0000000
--- a/usr.bin/ldd/elf64/Makefile
+++ /dev/null
@@ -1,51 +0,0 @@
-# $NetBSD: Makefile,v 1.11 2019/01/27 05:14:45 kre Exp $
-
-NOSANITIZER= # defined
-
-.include <bsd.own.mk>
-
-CPPFLAGS+= -DELFSIZE=64
-LIB= ldd_elf64
-
-# XXX Force one member
-SRCS= dummy.c
-
-LIBISPRIVATE= yes
-.PATH: ${.CURDIR}/..
-
-.if ${OBJECT_FMTS:Melf64} != ""
-
-# XXX we need to make sure that we don't accidentally get the elf32
-# XXX versions of these.
-
-RTLD_FUNCS = \
- _rtld_expand_path \
- _rtld_digest_dynamic \
- _rtld_digest_phdr \
- _rtld_load_needed_objects \
- _rtld_load_object \
- _rtld_map_object \
- _rtld_obj_free \
- _rtld_obj_new \
- _rtld_object_add_name \
- _rtld_object_match_name \
- _rtld_add_paths \
- _rtld_process_hints \
- _rtld_sysctl \
- _rtld_tls_allocate \
- _rtld_tls_free \
- _rtld_load_library
-
-.for _d in ${RTLD_FUNCS}
-CPPFLAGS+= -D${_d}=_elf64_${_d}
-.endfor
-
-.if (${MACHINE_ARCH} == "mips64el") || (${MACHINE_ARCH} == "mips64eb")
-CPPFLAGS+= -DRTLD_ARCH_SUBDIR=\"${MLIBDIR}\"
-.endif
-
-.include "../Makefile.elf"
-
-.endif
-
-.include <bsd.lib.mk>