etc: Add environment option to run init.d/ashd silently.
[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 \
4                         cf.c bufio.c
5 libht_a_CFLAGS  =       -fPIC
6 if USE_EPOLL
7 libht_a_SOURCES += mtio-epoll.c
8 else
9 if USE_KQUEUE
10 libht_a_SOURCES += mtio-kqueue.c
11 else
12 libht_a_SOURCES += mtio-select.c
13 endif
14 endif
15
16 pkginclude_HEADERS =    utils.h mt.h log.h req.h proc.h mtio.h resp.h \
17                         cf.h bufio.h