mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-12 10:54:48 +08:00
2e769ccf43
Now to sort out configure enable/with options.
16 lines
294 B
Makefile
16 lines
294 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-local: $(LIBRARY) FORCE
|
|
-$(MKDIR) -p $(libdir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 $(LIBRARY) $(libdir)
|
|
@(cd /tmp; $(RANLIB) $(libdir)/$(LIBRARY))
|
|
|