aboutsummaryrefslogtreecommitdiff
path: root/libexec/rtld-elf/Makefile
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>1998-03-07 19:24:35 +0000
committerJohn Polstra <jdp@FreeBSD.org>1998-03-07 19:24:35 +0000
commit3124c3e09305ad80d1b67c11e4962dc5f6e7fb01 (patch)
tree683a905f8c0a975412dfdff09245c8b618152014 /libexec/rtld-elf/Makefile
parent32dcb97f3ecd9d7fb7f811e276b3a10e46f7a447 (diff)
Notes
Diffstat (limited to 'libexec/rtld-elf/Makefile')
-rw-r--r--libexec/rtld-elf/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/libexec/rtld-elf/Makefile b/libexec/rtld-elf/Makefile
new file mode 100644
index 000000000000..cc6dfbe43cb2
--- /dev/null
+++ b/libexec/rtld-elf/Makefile
@@ -0,0 +1,15 @@
+#
+# $Id: Makefile,v 1.5 1998/03/05 21:05:47 jdp Exp $
+#
+
+PROG= ld-elf.so.1
+SRCS= rtld_start.S rtld.c map_object.c malloc.c xmalloc.c debug.c
+NOMAN= true
+CFLAGS+= -elf -fpic
+CFLAGS+= -Wall
+LDFLAGS+= -elf -nostdlib -Wl,-Bshareable,-Bsymbolic
+LDADD+= -lc_pic
+
+.PATH: ${.CURDIR}/${MACHINE}
+
+.include <bsd.prog.mk>