X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=lib%2FMakefile.am;h=0f13d2bffd65df25de92043b47225e28daa4d76b;hb=7d1e14f405f389656604c68e18a381feabcd3d4a;hp=a41cde02e4a1133bbd65a8506ebac5d8bb77bce1;hpb=e5ad70cbd3acc40df2546bd466c87f55417cbbe6;p=ashd.git diff --git a/lib/Makefile.am b/lib/Makefile.am index a41cde0..0f13d2b 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,6 +1,17 @@ -noinst_LIBRARIES = libht.a +lib_LIBRARIES = libht.a -libht_a_SOURCES = utils.c mt.c log.c req.c proc.c mtio.c resp.c cf.c \ - utils.h mt.h log.h req.h proc.h mtio.h resp.h cf.h -libht_a_CFLAGS = -fPIC -libht_a_CPPFLAGS = -D_GNU_SOURCE +libht_a_SOURCES = utils.c mt.c log.c req.c proc.c mtio.c resp.c \ + cf.c bufio.c +libht_a_CFLAGS = -fPIC +if USE_EPOLL +libht_a_SOURCES += mtio-epoll.c +else +if USE_KQUEUE +libht_a_SOURCES += mtio-kqueue.c +else +libht_a_SOURCES += mtio-select.c +endif +endif + +pkginclude_HEADERS = utils.h mt.h log.h req.h proc.h mtio.h resp.h \ + cf.h bufio.h