diff options
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 000000000000..e655e2648df6 --- /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> |