]> git.ipfire.org Git - thirdparty/squid.git/blob - helpers/basic_auth/SMB/Makefile.am
rename libsquid-compat directory to squid-compat
[thirdparty/squid.git] / helpers / basic_auth / SMB / 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 # SAMBAPREFIX must point to the directory where Samba has been installed.
10 # By default, Samba is installed in /usr/local/samba. If you changed this
11 # by using the --prefix option when configuring Samba, you need to change
12 # SAMBAPREFIX accordingly.
13
14 ## FIXME: autoconf should test for the samba path.
15
16 SMB_AUTH_HELPER = smb_auth.sh
17 SAMBAPREFIX=/usr/local/samba
18 SMB_AUTH_HELPER_PATH = $(libexecdir)/$(SMB_AUTH_HELPER)
19
20 libexec_SCRIPTS = $(SMB_AUTH_HELPER)
21 libexec_PROGRAMS = smb_auth
22 smb_auth_CFLAGS = -DSAMBAPREFIX=\"$(SAMBAPREFIX)\" -DHELPERSCRIPT=\"$(SMB_AUTH_HELPER_PATH)\"
23 EXTRA_DIST = smb_auth.sh COPYING-2.0
24
25 INCLUDES = \
26 -I$(top_srcdir) \
27 -I$(top_srcdir)/include
28
29 LDADD = \
30 -L$(top_builddir)/squid-compat/libcompat.la \
31 -L$(top_builddir)/lib -lmiscutil \
32 $(XTRA_LIBS)