Merge branch 'master' into timeheap
[ashd.git] / lib / Makefile.am
... / ...
CommitLineData
1lib_LIBRARIES = libht.a
2
3libht_a_SOURCES = utils.c mt.c log.c req.c proc.c mtio.c resp.c \
4 cf.c bufio.c
5libht_a_CFLAGS = -fPIC
6if USE_EPOLL
7libht_a_SOURCES += mtio-epoll.c
8else
9if USE_KQUEUE
10libht_a_SOURCES += mtio-kqueue.c
11else
12libht_a_SOURCES += mtio-select.c
13endif
14endif
15
16pkginclude_HEADERS = utils.h mt.h log.h req.h proc.h mtio.h resp.h \
17 cf.h bufio.h