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