mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 01:38:57 +00:00
3923b0019c
lib.c: Pull in archives containing definitions needed by shared objects. warnings.c: Less spurious "undefined symbol" msgs for shared library defined symbols. ld.c: Do a better job of recognising data in text segments, eg. `const char []'. shlib.c,ld/rtld/{Makefile rtld.c} Use strsep() in stead of strtok() and restore colons in eg. env. vars.
14 lines
302 B
Makefile
14 lines
302 B
Makefile
# $Id: Makefile,v 1.2 1993/11/03 05:20:49 cgd Exp $
|
|
|
|
PROG= ldconfig
|
|
SRCS= ldconfig.c shlib.c etc.c
|
|
LDDIR?= $(.CURDIR)/..
|
|
LDFLAGS += -static
|
|
CFLAGS += -I$(LDDIR) -I$(.CURDIR) -I$(LDDIR)/$(MACHINE) -O
|
|
BINDIR= ${DESTDIR}/sbin
|
|
MAN8 = ldconfig.0
|
|
|
|
.PATH: $(LDDIR) $(LDDIR)/$(MACHINE)
|
|
|
|
.include <bsd.prog.mk>
|