]> git.ipfire.org Git - thirdparty/squid.git/blame - src/comm/Makefile.am
Remove outdated Win32 select() module (#1419)
[thirdparty/squid.git] / src / comm / Makefile.am
CommitLineData
b8ae064d 1## Copyright (C) 1996-2023 The Squid Software Foundation and contributors
bbc27441
AJ
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
04f55905
AJ
8include $(top_srcdir)/src/Common.am
9include $(top_srcdir)/src/TestHeaders.am
10
6bc04e73
AR
11noinst_LTLIBRARIES = \
12 libcomm.la \
13 libminimal.la
04f55905 14
ec41b64c 15## Library holding comm socket handlers
aa5639dc 16libcomm_la_SOURCES = \
04f55905
AJ
17 AcceptLimiter.cc \
18 AcceptLimiter.h \
aed188fd
AJ
19 ConnOpener.cc \
20 ConnOpener.h \
cfd66529
AJ
21 Connection.cc \
22 Connection.h \
c8407295 23 Flag.h \
ec41b64c
AJ
24 IoCallback.cc \
25 IoCallback.h \
d841c88d
AJ
26 Loops.h \
27 ModDevPoll.cc \
28 ModEpoll.cc \
29 ModKqueue.cc \
30 ModPoll.cc \
31 ModSelect.cc \
7e66d5e2
AJ
32 Read.cc \
33 Read.h \
1dde4660
AJ
34 Tcp.cc \
35 Tcp.h \
cbff89ba
AJ
36 TcpAcceptor.cc \
37 TcpAcceptor.h \
ec41b64c
AJ
38 Write.cc \
39 Write.h \
aa5639dc 40 comm_internal.h \
41 forward.h
6bc04e73
AR
42
43# a bare-bones implementation of few Comm APIs sufficient for helpers use
44libminimal_la_SOURCES = \
45 minimal.cc