1## Copyright (C) 1996-2021 The Squid Software Foundation and contributors
2##
3## Squid software is distributed under GPLv2+ license and includes
4## contributions from numerous individuals and organizations.
5## Please see the COPYING and CONTRIBUTORS files for details.
6##
7
8include $(top_srcdir)/src/Common.am
9
10libexec_PROGRAMS = ext_ad_group_acl
11man_MANS = ext_ad_group_acl.8
12
13ext_ad_group_acl_SOURCES = ext_ad_group_acl.cc
14
15#
16# Currently activeds and adsiid libraries are not available on MinGW or Cygwin,
17# so the following library list is just a placeholder for future MinGW/Cygwin releases.
18# This helper can be compiled only using Microsoft Visual Studio.
19# TODO: test for these libraries in required.m4
20#
21ext_ad_group_acl_LDADD = \
22	$(COMPAT_LIB) \
23	-lnetapi32 \
24	-ladvapi32 \
25	-lole32 \
26	-loleaut32 \
27	-lntdll \
28	-lactiveds \
29	-ladsiid \
30	$(XTRA_LIBS)
31
32EXTRA_DIST = required.m4 ext_ad_group_acl.8
33