mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 17:49:59 -05:00
15 lines
288 B
Makefile
15 lines
288 B
Makefile
##
|
|
## LIBLBER
|
|
##
|
|
|
|
SRCS = decode.c encode.c io.c bprint.c
|
|
OBJS = decode.o encode.o io.o bprint.o
|
|
XSRCS = version.c
|
|
|
|
LIBRARY = liblber.a
|
|
|
|
install: $(LIBRARY) FORCE
|
|
-$(MKDIR) -p $(libdir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 $(LIBRARY) $(libdir)
|
|
@(cd /tmp; $(RANLIB) $(libdir)/$(LIBRARY))
|
|
|