Home | History | Annotate | Line # | Download | only in passwd
Makefile revision 1.1.1.4
      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.2      tron LIBTOOL = $(LDAP_BUILD)/libtool
     10  1.1.1.4  christos INSTALL = /usr/bin/install
     11  1.1.1.2      tron CC = gcc
     12  1.1.1.4  christos OPT = -g -O2
     13  1.1.1.2      tron DEFS = 
     14  1.1.1.2      tron INCS = $(LDAP_INC)
     15  1.1.1.2      tron LIBS = $(LDAP_LIB)
     16      1.1     lukem 
     17  1.1.1.2      tron PROGRAMS = pw-kerberos.la pw-netscape.la pw-radius.la pw-apr1.la
     18  1.1.1.4  christos MANPAGES = slapd-pw-radius.5
     19  1.1.1.2      tron LTVER = 0:0:0
     20      1.1     lukem 
     21  1.1.1.2      tron prefix=/usr/local
     22  1.1.1.2      tron exec_prefix=$(prefix)
     23  1.1.1.2      tron ldap_subdir=/openldap
     24      1.1     lukem 
     25  1.1.1.2      tron libdir=$(exec_prefix)/lib
     26  1.1.1.2      tron libexecdir=$(exec_prefix)/libexec
     27  1.1.1.2      tron moduledir = $(libexecdir)$(ldap_subdir)
     28  1.1.1.4  christos mandir = $(exec_prefix)/share/man
     29  1.1.1.4  christos man5dir = $(mandir)/man5
     30  1.1.1.2      tron 
     31  1.1.1.2      tron .SUFFIXES: .c .o .lo
     32      1.1     lukem 
     33  1.1.1.2      tron .c.lo:
     34  1.1.1.4  christos 	$(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $(OPT) $(CPPFLAGS) $(DEFS) $(INCS) -c $<
     35  1.1.1.2      tron 
     36  1.1.1.2      tron all: $(PROGRAMS)
     37  1.1.1.2      tron 
     38  1.1.1.2      tron pw-kerberos.la:	kerberos.lo
     39  1.1.1.4  christos 	$(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -version-info $(LTVER) \
     40  1.1.1.3  christos 	-rpath $(moduledir) -module -o $@ $? -lkrb5
     41      1.1     lukem 
     42  1.1.1.2      tron pw-netscape.la:	netscape.lo
     43  1.1.1.4  christos 	$(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -version-info $(LTVER) \
     44  1.1.1.3  christos 	-rpath $(moduledir) -module -o $@ $?
     45  1.1.1.2      tron 
     46  1.1.1.2      tron pw-radius.la:	radius.lo
     47  1.1.1.4  christos 	$(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -version-info $(LTVER) \
     48  1.1.1.3  christos 	-rpath $(moduledir) -module -o $@ $? -lradius
     49      1.1     lukem 
     50  1.1.1.2      tron pw-apr1.la:	apr1.lo
     51  1.1.1.4  christos 	$(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -version-info $(LTVER) \
     52  1.1.1.3  christos 	-rpath $(moduledir) -module -o $@ $?
     53  1.1.1.2      tron 
     54      1.1     lukem clean:
     55  1.1.1.2      tron 	rm -rf *.o *.lo *.la .libs
     56  1.1.1.2      tron 
     57  1.1.1.4  christos install: install-lib install-man FORCE
     58  1.1.1.4  christos 
     59  1.1.1.4  christos install-lib: $(PROGRAMS)
     60  1.1.1.2      tron 	mkdir -p $(DESTDIR)$(moduledir)
     61  1.1.1.2      tron 	for p in $(PROGRAMS) ; do \
     62  1.1.1.2      tron 		$(LIBTOOL) --mode=install cp $$p $(DESTDIR)$(moduledir) ; \
     63  1.1.1.2      tron 	done
     64  1.1.1.2      tron 
     65  1.1.1.4  christos install-man: $(MANPAGES)
     66  1.1.1.4  christos 	mkdir -p  $(DESTDIR)$(man5dir)
     67  1.1.1.4  christos 	$(INSTALL) -m 644 $(MANPAGES) $(DESTDIR)$(man5dir)
     68  1.1.1.4  christos 
     69  1.1.1.4  christos FORCE:
     70  1.1.1.4  christos 
     71