mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-29 10:07:32 -05:00
16 lines
288 B
Makefile
16 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))
|
||
|
|
|