Commit | Line | Data |
---|---|---|
349b2564 | 1 | lib_LIBRARIES = libht.a |
f0bbedf7 | 2 | |
349b2564 | 3 | libht_a_SOURCES = utils.c mt.c log.c req.c proc.c mtio.c resp.c cf.c |
a6cda4dd | 4 | libht_a_CFLAGS = -fPIC |
a6cda4dd FT |
5 | if USE_EPOLL |
6 | libht_a_SOURCES += mtio-epoll.c | |
7 | else | |
ac612570 FT |
8 | if USE_KQUEUE |
9 | libht_a_SOURCES += mtio-kqueue.c | |
10 | else | |
a6cda4dd FT |
11 | libht_a_SOURCES += mtio-select.c |
12 | endif | |
ac612570 | 13 | endif |
349b2564 FT |
14 | |
15 | pkginclude_HEADERS = utils.h mt.h log.h req.h proc.h mtio.h resp.h cf.h |