]> git.ipfire.org Git - thirdparty/squid.git/blame - helpers/basic_auth/SMB/Makefile.am
Detach automke system from using -I.
[thirdparty/squid.git] / helpers / basic_auth / SMB / Makefile.am
CommitLineData
a2794549 1#
2# Makefile for the Squid Object Cache server
3#
cc937513 4# $Id$
a2794549 5#
6# Uncomment and customize the following to suit your needs:
7#
8
189f1e66
AJ
9include $(top_srcdir)/src/Common.am
10
a2794549 11# SAMBAPREFIX must point to the directory where Samba has been installed.
12# By default, Samba is installed in /usr/local/samba. If you changed this
13# by using the --prefix option when configuring Samba, you need to change
14# SAMBAPREFIX accordingly.
15
16## FIXME: autoconf should test for the samba path.
17
18SMB_AUTH_HELPER = smb_auth.sh
19SAMBAPREFIX=/usr/local/samba
20SMB_AUTH_HELPER_PATH = $(libexecdir)/$(SMB_AUTH_HELPER)
21
22libexec_SCRIPTS = $(SMB_AUTH_HELPER)
23libexec_PROGRAMS = smb_auth
24smb_auth_CFLAGS = -DSAMBAPREFIX=\"$(SAMBAPREFIX)\" -DHELPERSCRIPT=\"$(SMB_AUTH_HELPER_PATH)\"
897c8073 25EXTRA_DIST = smb_auth.sh COPYING-2.0
a2794549 26
189f1e66
AJ
27## we need our local files too (but avoid -I. at all costs)
28INCLUDES += -I$(srcdir)
a2794549 29
cc937513 30LDADD = \
52d47aba 31 $(top_builddir)/compat/libcompat.la \
cc937513
AJ
32 -L$(top_builddir)/lib -lmiscutil \
33 $(XTRA_LIBS)