mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
## Copyright 1998 Net Boolean Incorporated
|
|
## COPYING RESTRICTIONS APPLY, See COPYING file
|
|
##
|
|
## include Makefile.in for OpenLDAP
|
|
|
|
install: all FORCE
|
|
-$(MKDIR) -p $(includedir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 ldap.h $(includedir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 lber.h $(includedir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 proto-lber.h $(includedir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 proto-ldap.h $(includedir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 disptmpl.h $(includedir)
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 srchpref.h $(includedir)
|
|
|
|
all: ldapconfig.h FORCE
|
|
|
|
clean: FORCE
|
|
veryclean: FORCE
|
|
depend: FORCE
|
|
|
|
ldapconfig.h: ldapconfig.h.edit Makefile
|
|
@$(RM) $@
|
|
@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);' \
|
|
ldapconfig.h.edit >> $@; \
|
|
$(CHMOD) 444 $@
|
|
|