diff options
author | paul <paul@FreeBSD.org> | 1993-11-03 23:41:59 +0000 |
---|---|---|
committer | paul <paul@FreeBSD.org> | 1993-11-03 23:41:59 +0000 |
commit | 66fdbc00cfad3be604d07da78b916f4c04f96dbc (patch) | |
tree | ae9c655d7f7352058dd703d580c1f70430c1e5f7 /sbin/ldconfig/Makefile | |
parent | 7f9e326f196003559252a070bd773ee08a76b244 (diff) | |
download | FreeBSD-src-66fdbc00cfad3be604d07da78b916f4c04f96dbc.zip FreeBSD-src-66fdbc00cfad3be604d07da78b916f4c04f96dbc.tar.gz |
Imported NetBSD's ld for shared libs.
Diffstat (limited to 'sbin/ldconfig/Makefile')
-rw-r--r-- | sbin/ldconfig/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sbin/ldconfig/Makefile b/sbin/ldconfig/Makefile new file mode 100644 index 0000000..e655e26 --- /dev/null +++ b/sbin/ldconfig/Makefile @@ -0,0 +1,13 @@ +# $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> |