Commit | Line | Data |
---|---|---|
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 | if USE_EPOLL | |
6 | libht_a_SOURCES += mtio-epoll.c | |
7 | else | |
8 | if USE_KQUEUE | |
9 | libht_a_SOURCES += mtio-kqueue.c | |
10 | else | |
11 | libht_a_SOURCES += mtio-select.c | |
12 | endif | |
13 | endif | |
14 | ||
15 | pkginclude_HEADERS = utils.h mt.h log.h req.h proc.h mtio.h resp.h cf.h |