Skip to content
Snippets Groups Projects
Commit b60b0fe5 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Add Makefile templates for libraries.

parent cddd8504
Branches
Tags
No related merge requests found
##
## LIBAVL
##
SRCS = avl.c testavl.c
XSRCS = version.c
OBJS = avl.o
LIBRARY = libavl.a
XPROGRAMS = testavl
testavl: $(LIBRARY) testavl.o
##
## 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))
##
## Makefile.in for LDAP -lldap
##
LIBRARY = libldap.a
PROGRAMS = ltest ttest
SRCS = bind.c open.c result.c error.c compare.c search.c \
modify.c add.c modrdn.c delete.c abandon.c ufn.c cache.c \
getfilter.c sbind.c kbind.c unbind.c friendly.c cldap.c \
free.c disptmpl.c srchpref.c dsparse.c tmplout.c sort.c \
getdn.c getentry.c getattr.c getvalues.c addentry.c \
request.c getdxbyname.c os-ip.c url.c charset.c
OBJS = bind.o open.o result.o error.o compare.o search.o \
modify.o add.o modrdn.o delete.o abandon.o ufn.o cache.o \
getfilter.o sbind.o kbind.o unbind.o friendly.o cldap.o \
free.o disptmpl.o srchpref.o dsparse.o tmplout.o sort.o \
getdn.o getentry.o getattr.o getvalues.o addentry.o \
request.o getdxbyname.o os-ip.o url.o charset.o
LIBS = -L. -L../liblber -lldap -llber $(AC_LIBS)
LIBLBER = ../liblber/liblber.a
ltest: $(LIBRARY) test.o $(LIBLBER)
$(CC) $(LDFLAGS) -o $@ test.o $(LIBS)
ttest: $(LIBRARY) tmpltest.o $(LIBLBER)
$(CC) $(LDFLAGS) -o $@ test.o $(LIBS)
CFFILES= ldapfilter.conf ldapfriendly ldaptemplates.conf ldapsearchprefs.conf
install: $(LIBRARY) $(CFFILES) FORCE
-$(MKDIR) -p $(libdir)
$(INSTALL) $(INSTALLFLAGS) -m 644 $(LIBRARY) $(libdir)
@(cd /tmp; $(RANLIB) $(libdir)/$(LIBRARY))
-$(MKDIR) -p $(sysconfdir)
@for i in $(CFFILES); do \
echo "installing $$i in $(sysconfdir)"; \
$(MV) $(sysconfdir)/$$i $(sysconfdir)/$$i- ; \
$(INSTALL) $(INSTALLFLAGS) -m 644 $$i $(sysconfdir) ; \
done
##
## Makefile for -lldbm
##
LIBRARY = libldbm.a
XPROGRAMS = testldbm
SRCS = ldbm.c
OBJS = ldbm.o
LIBS = -L$(LDAP_LIBDIR) -lavl $(AC_LIBS)
testldbm: libldbm.a testldbm.o
$(CC) $(LDFLAGS) -o $@ testldbm.o $(LIBS)
##
## Makefile for -lldif
##
LIBRARY = libldif.a
SRCS = line64.c
OBJS = line64.o
##
## Makefile for -llthread
##
LIBRARY = liblthread.a
XSRCS = version.c
SRCS = thread.c stack.c
OBJS = thread.o stack.o
##
## Makefile for -lutil
##
LIBRARY = liblutil.a
SRCS = base64.c md5.c sha1.c
OBJS = base64.o md5.o sha1.o
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment