]> git.ipfire.org Git - thirdparty/squid.git/blame - src/DiskIO/AIO/Makefile.am
Source Format Enforcement (#665)
[thirdparty/squid.git] / src / DiskIO / AIO / Makefile.am
CommitLineData
77b1029d 1## Copyright (C) 1996-2020 The Squid Software Foundation and contributors
d9691f09
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
8include $(top_srcdir)/src/Common.am
9include $(top_srcdir)/src/TestHeaders.am
10
11noinst_LTLIBRARIES = libAIO.la
12
13libAIO_la_SOURCES = \
d9691f09
AJ
14 AIODiskFile.cc \
15 AIODiskFile.h \
16 AIODiskIOModule.cc \
17 AIODiskIOModule.h \
18 AIODiskIOStrategy.cc \
aa5639dc 19 AIODiskIOStrategy.h \
20 async_io.h
d9691f09
AJ
21
22if ENABLE_WIN32_AIO
23libAIO_la_SOURCES += \
24 aio_win32.cc \
25 aio_win32.h
26else
27EXTRA_DIST = \
28 aio_win32.cc \
29 aio_win32.h
30endif
31