lib: Split epoll and select loops into separate files.
[ashd.git] / lib / Makefile.am
CommitLineData
349b2564 1lib_LIBRARIES = libht.a
f0bbedf7 2
349b2564 3libht_a_SOURCES = utils.c mt.c log.c req.c proc.c mtio.c resp.c cf.c
a6cda4dd
FT
4libht_a_CFLAGS = -fPIC
5libht_a_CPPFLAGS = -D_GNU_SOURCE
6if USE_EPOLL
7libht_a_SOURCES += mtio-epoll.c
8else
9libht_a_SOURCES += mtio-select.c
10endif
349b2564
FT
11
12pkginclude_HEADERS = utils.h mt.h log.h req.h proc.h mtio.h resp.h cf.h