mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-18 11:05:48 +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.
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
## Copyright 1998 The OpenLDAP Foundation, All Rights Reserved.
|
|
## COPYING RESTRICTIONS APPLY, See COPYRIGHT file
|
|
##
|
|
## include Makefile.in for OpenLDAP
|
|
|
|
all-local: ldapconfig.h FORCE
|
|
|
|
install-local: FORCE
|
|
-$(MKDIR) -p $(includedir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 ldap.h $(includedir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 lber.h $(includedir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 ldap_cdefs.h $(includedir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 ldap_features.h $(includedir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 disptmpl.h $(includedir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 srchpref.h $(includedir)
|
|
|
|
clean-local: FORCE
|
|
$(RM) ldapconfig.h
|
|
|
|
veryclean-local: clean-local FORCE
|
|
$(RM) portable.h ldap_features.h
|
|
|
|
depend-local: ldapconfig.h FORCE
|
|
|
|
ldapconfig.h: $(srcdir)/ldapconfig.h.edit Makefile
|
|
@$(RM) $@
|
|
@echo "Making ldapconfig.h"
|
|
@echo "/*" > $@; \
|
|
echo " * This file was automatically generated. Do not edit it." >> $@; \
|
|
echo " * Instead, edit the file ldapconfig.h.edit. See the LDAP" >> $@; \
|
|
echo " * INSTALL file for more information." >> $@; \
|
|
echo " */ " >> $@; \
|
|
echo "" >> $@; \
|
|
$(SED) \
|
|
-e 's;%SYSCONFDIR%;$(sysconfdir);' \
|
|
-e 's;%BINDIR%;$(bindir);' \
|
|
-e 's;%SBINDIR%;$(sbindir);' \
|
|
-e 's;%LIBEXECDIR%;$(libexecdir);' \
|
|
-e 's;%RUNDIR%;$(localstatedir);' \
|
|
-e 's;%EDITOR%;$(EDITOR);' \
|
|
-e 's;%FINGER%;$(FINGER);' \
|
|
-e 's;%SENDMAIL%;$(SENDMAIL);' \
|
|
$(srcdir)/ldapconfig.h.edit >> $@; \
|
|
$(CHMOD) 444 $@
|
|
|
|
all-common: all-local
|
|
install-common: all-common install-local
|
|
clean-common: clean-local
|
|
veryclean-common: veryclean-local
|
|
depend-common: depend-local
|