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