mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
Add Makefile templates for libraries.
This commit is contained in:
parent
cddd8504a5
commit
b60b0fe58a
12
libraries/libavl/Makefile.in
Normal file
12
libraries/libavl/Makefile.in
Normal file
@ -0,0 +1,12 @@
|
||||
##
|
||||
## LIBAVL
|
||||
##
|
||||
|
||||
SRCS = avl.c testavl.c
|
||||
XSRCS = version.c
|
||||
OBJS = avl.o
|
||||
|
||||
LIBRARY = libavl.a
|
||||
XPROGRAMS = testavl
|
||||
|
||||
testavl: $(LIBRARY) testavl.o
|
15
libraries/liblber/Makefile.in
Normal file
15
libraries/liblber/Makefile.in
Normal file
@ -0,0 +1,15 @@
|
||||
##
|
||||
## 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))
|
||||
|
38
libraries/libldap/Makefile.in
Normal file
38
libraries/libldap/Makefile.in
Normal file
@ -0,0 +1,38 @@
|
||||
##
|
||||
## 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
|
11
libraries/libldbm/Makefile.in
Normal file
11
libraries/libldbm/Makefile.in
Normal file
@ -0,0 +1,11 @@
|
||||
##
|
||||
## 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)
|
6
libraries/libldif/Makefile.in
Normal file
6
libraries/libldif/Makefile.in
Normal file
@ -0,0 +1,6 @@
|
||||
##
|
||||
## Makefile for -lldif
|
||||
##
|
||||
LIBRARY = libldif.a
|
||||
SRCS = line64.c
|
||||
OBJS = line64.o
|
7
libraries/liblthread/Makefile.in
Normal file
7
libraries/liblthread/Makefile.in
Normal file
@ -0,0 +1,7 @@
|
||||
##
|
||||
## Makefile for -llthread
|
||||
##
|
||||
LIBRARY = liblthread.a
|
||||
XSRCS = version.c
|
||||
SRCS = thread.c stack.c
|
||||
OBJS = thread.o stack.o
|
6
libraries/liblutil/Makefile.in
Normal file
6
libraries/liblutil/Makefile.in
Normal file
@ -0,0 +1,6 @@
|
||||
##
|
||||
## Makefile for -lutil
|
||||
##
|
||||
LIBRARY = liblutil.a
|
||||
SRCS = base64.c md5.c sha1.c
|
||||
OBJS = base64.o md5.o sha1.o
|
Loading…
Reference in New Issue
Block a user