diff options
Diffstat (limited to 'libexec/rtld-elf/Makefile')
-rw-r--r-- | libexec/rtld-elf/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libexec/rtld-elf/Makefile b/libexec/rtld-elf/Makefile new file mode 100644 index 0000000..cc6dfbe --- /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> |