freebsd-dev/libexec/rtld-elf/Makefile
John Polstra 3124c3e093 Import the ELF dynamic linker. This is the ElfKit version with
quite a few enhancements and bug fixes.  There are still some known
deficiencies, but it should be adequate to get us started with ELF.

Submitted by:	John Polstra <jdp@polstra.com>
1998-03-07 19:24:35 +00:00

16 lines
314 B
Makefile

#
# $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>