Home | History | Annotate | Line # | Download | only in sha2
      1  1.1.1.2      tron # $OpenLDAP$
      2      1.1     lukem 
      3  1.1.1.2      tron LDAP_SRC = ../../../..
      4  1.1.1.3  christos LDAP_BUILD = $(LDAP_SRC)
      5  1.1.1.2      tron LDAP_INC = -I$(LDAP_BUILD)/include -I$(LDAP_SRC)/include -I$(LDAP_SRC)/servers/slapd
      6  1.1.1.4  christos LDAP_LIB = $(LDAP_BUILD)/libraries/libldap/libldap.la \
      7  1.1.1.2      tron 	$(LDAP_BUILD)/libraries/liblber/liblber.la
      8      1.1     lukem 
      9  1.1.1.5  christos PLAT = UNIX
     10  1.1.1.5  christos NT_LIB = -L$(LDAP_BUILD)/servers/slapd -lslapd
     11  1.1.1.5  christos NT_LDFLAGS = -no-undefined -avoid-version
     12  1.1.1.5  christos UNIX_LDFLAGS = -version-info $(LTVER)
     13  1.1.1.5  christos 
     14  1.1.1.2      tron LIBTOOL = $(LDAP_BUILD)/libtool
     15  1.1.1.4  christos INSTALL = /usr/bin/install
     16  1.1.1.2      tron CC = gcc
     17  1.1.1.4  christos OPT = -g -O2
     18  1.1.1.2      tron DEFS = 
     19  1.1.1.2      tron #DEFS = -DSLAPD_SHA2_DEBUG
     20  1.1.1.2      tron INCS = $(LDAP_INC)
     21  1.1.1.5  christos LIBS = $($(PLAT)_LIB) $(LDAP_LIB)
     22  1.1.1.5  christos LD_FLAGS = $(LDFLAGS) $($(PLAT)_LDFLAGS) -rpath $(moduledir) -module
     23      1.1     lukem 
     24  1.1.1.2      tron PROGRAMS = pw-sha2.la
     25  1.1.1.4  christos MANPAGES = slapd-pw-sha2.5
     26  1.1.1.2      tron LTVER = 0:0:0
     27      1.1     lukem 
     28  1.1.1.2      tron prefix=/usr/local
     29  1.1.1.2      tron exec_prefix=$(prefix)
     30  1.1.1.2      tron ldap_subdir=/openldap
     31  1.1.1.2      tron 
     32  1.1.1.2      tron libdir=$(exec_prefix)/lib
     33  1.1.1.2      tron libexecdir=$(exec_prefix)/libexec
     34  1.1.1.2      tron moduledir = $(libexecdir)$(ldap_subdir)
     35  1.1.1.4  christos mandir = $(exec_prefix)/share/man
     36  1.1.1.4  christos man5dir = $(mandir)/man5
     37  1.1.1.2      tron 
     38  1.1.1.2      tron .SUFFIXES: .c .o .lo
     39  1.1.1.2      tron 
     40  1.1.1.2      tron .c.lo:
     41  1.1.1.4  christos 	$(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $(OPT) $(CPPFLAGS) $(DEFS) $(INCS) -c $<
     42  1.1.1.2      tron 
     43  1.1.1.2      tron all:		$(PROGRAMS)
     44  1.1.1.2      tron 
     45  1.1.1.2      tron pw-sha2.la:	slapd-sha2.lo sha2.lo
     46  1.1.1.5  christos 	$(LIBTOOL) --mode=link $(CC) $(LD_FLAGS) -o $@ $? $(LIBS)
     47      1.1     lukem 
     48      1.1     lukem clean:
     49  1.1.1.2      tron 	rm -rf *.o *.lo *.la .libs
     50  1.1.1.2      tron 
     51  1.1.1.4  christos install: install-lib install-man FORCE
     52  1.1.1.4  christos 
     53  1.1.1.4  christos install-lib: $(PROGRAMS)
     54  1.1.1.2      tron 	mkdir -p $(DESTDIR)$(moduledir)
     55  1.1.1.2      tron 	for p in $(PROGRAMS) ; do \
     56  1.1.1.2      tron 		$(LIBTOOL) --mode=install cp $$p $(DESTDIR)$(moduledir) ; \
     57  1.1.1.2      tron 	done
     58  1.1.1.2      tron 
     59  1.1.1.4  christos install-man: $(MANPAGES)
     60  1.1.1.4  christos 	mkdir -p  $(DESTDIR)$(man5dir)
     61  1.1.1.4  christos 	$(INSTALL) -m 644 $(MANPAGES) $(DESTDIR)$(man5dir)
     62  1.1.1.4  christos 
     63  1.1.1.4  christos FORCE:
     64  1.1.1.4  christos 
     65