mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
6f92e197dc
Updated to use libtool 1.2 (with FreeBSD3.0 a.out v. elf detection). Updated autoconf to 1.12 with sed patch (don't use stock 1.12). aclocal.m4 is built using automake's aclocal, v1.3. Updated mkdep to support libtool .lo files. Updated automake provided macros for TERMIOS, STRTOD, MKTIME, PTRDIFF_T Autoconf now checks to ensure C compiler supports ANSI C prototypes. Updated make files templates.
13 lines
310 B
Makefile
13 lines
310 B
Makefile
##---------------------------------------------------------------------------
|
|
##
|
|
## Makefile Template for Static Libraries
|
|
##
|
|
|
|
$(LIBRARY): version.o
|
|
$(AR) ru $@ $(OBJS) version.o
|
|
@$(RANLIB) $@; \
|
|
$(RM) ../$@; \
|
|
(d=`$(PWD)` ; $(LN_S) `$(BASENAME) $$d`/$@ ../$@)
|
|
|
|
Makefile: $(top_srcdir)/build/lib-static.mk
|