]> git.ipfire.org Git - thirdparty/squid.git/blob - helpers/digest_auth/ldap/Makefile.am
Detach automke system from using -I.
[thirdparty/squid.git] / helpers / digest_auth / ldap / Makefile.am
1 #
2 # Makefile for the Squid Object Cache server
3 #
4 # $Id$
5 #
6 # Uncomment and customize the following to suit your needs:
7 #
8
9 include $(top_srcdir)/src/Common.am
10
11 ## we need our local files too (but avoid -I. at all costs)
12 INCLUDES += -I$(srcdir)
13
14
15 libexec_PROGRAMS = digest_ldap_auth
16 digest_ldap_auth_SOURCES = digest_pw_auth.c \
17 digest_common.h \
18 ldap_backend.c \
19 ldap_backend.h
20
21 LDADD = \
22 $(top_builddir)/compat/libcompat.la \
23 -L$(top_builddir)/lib -lmiscutil \
24 $(LIB_LDAP) \
25 $(LIB_LBER) \
26 $(CRYPTLIB) \
27 $(XTRA_LIBS) \
28 $(SSLLIB)