2 # This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 # Copyright 2005-2012 The OpenLDAP Foundation.
5 # Portions Copyright 2005 Howard Chu, Symas Corp. All Rights Reserved.
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted only as authorized by the OpenLDAP
11 # A copy of this license is available in the file LICENSE in the
12 # top-level directory of the distribution or, alternatively, at
13 # <http://www.OpenLDAP.org/license.html>.
17 LDAP_INC = -I$(LDAP_BUILD)/include -I$(LDAP_SRC)/include -I$(LDAP_SRC)/servers/slapd
18 LDAP_LIB = $(LDAP_BUILD)/libraries/libldap_r/libldap_r.la \
19 $(LDAP_BUILD)/libraries/liblber/liblber.la
21 LIBTOOL = $(LDAP_BUILD)/libtool
28 PROGRAMS = proxyOld.la
35 libdir=$(exec_prefix)/lib
36 libexecdir=$(exec_prefix)/libexec
37 moduledir = $(libexecdir)$(ldap_subdir)
42 $(LIBTOOL) --mode=compile $(CC) $(OPT) $(DEFS) $(INCS) -c $<
46 proxyOld.la: proxyOld.lo
47 $(LIBTOOL) --mode=link $(CC) $(OPT) -version-info $(LTVER) \
48 -rpath $(moduledir) -module -o $@ $? $(LIBS)
51 rm -rf *.o *.lo *.la .libs
54 mkdir -p $(DESTDIR)$(moduledir)
55 for p in $(PROGRAMS) ; do \
56 $(LIBTOOL) --mode=install cp $$p $(DESTDIR)$(moduledir) ; \