]> git.ipfire.org Git - thirdparty/squid.git/blob - src/DiskIO/AIO/Makefile.am
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / DiskIO / AIO / Makefile.am
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
8 include $(top_srcdir)/src/Common.am
9 include $(top_srcdir)/src/TestHeaders.am
10
11 noinst_LTLIBRARIES = libAIO.la
12
13 libAIO_la_SOURCES = \
14 AIODiskFile.cc \
15 AIODiskFile.h \
16 AIODiskIOModule.cc \
17 AIODiskIOModule.h \
18 AIODiskIOStrategy.cc \
19 AIODiskIOStrategy.h \
20 async_io.h
21
22 if ENABLE_WIN32_AIO
23 libAIO_la_SOURCES += \
24 aio_win32.cc \
25 aio_win32.h
26 else
27 EXTRA_DIST = \
28 aio_win32.cc \
29 aio_win32.h
30 endif
31