]> git.ipfire.org Git - thirdparty/squid.git/blame - src/DiskIO/AIO/Makefile.am
Source Format Enforcement (#532)
[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 = \
14 async_io.h \
15 AIODiskFile.cc \
16 AIODiskFile.h \
17 AIODiskIOModule.cc \
18 AIODiskIOModule.h \
19 AIODiskIOStrategy.cc \
20 AIODiskIOStrategy.h
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