2008-02-28 02:47:43 +00:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2009-07-28 04:03:57 +00:00
|
|
|
EVENT2_EXPORT = \
|
|
|
|
event2/buffer.h \
|
|
|
|
event2/buffer_compat.h \
|
|
|
|
event2/bufferevent.h \
|
|
|
|
event2/bufferevent_compat.h \
|
|
|
|
event2/bufferevent_ssl.h \
|
|
|
|
event2/bufferevent_struct.h \
|
|
|
|
event2/dns.h \
|
|
|
|
event2/dns_compat.h \
|
|
|
|
event2/dns_struct.h \
|
|
|
|
event2/event.h \
|
|
|
|
event2/event_compat.h \
|
|
|
|
event2/event_struct.h \
|
|
|
|
event2/http.h \
|
|
|
|
event2/http_compat.h \
|
|
|
|
event2/http_struct.h \
|
2010-09-02 11:36:44 -04:00
|
|
|
event2/keyvalq_struct.h \
|
2009-07-28 04:03:57 +00:00
|
|
|
event2/listener.h \
|
|
|
|
event2/rpc.h \
|
|
|
|
event2/rpc_compat.h \
|
|
|
|
event2/rpc_struct.h \
|
|
|
|
event2/tag.h \
|
|
|
|
event2/tag_compat.h \
|
|
|
|
event2/thread.h \
|
|
|
|
event2/util.h
|
2009-02-02 19:22:13 +00:00
|
|
|
|
2009-07-28 04:03:57 +00:00
|
|
|
EXTRA_SRC = $(EVENT2_EXPORT)
|
|
|
|
|
2011-02-25 10:35:12 -05:00
|
|
|
## Without the nobase_ prefixing, Automake would strip "event2/" from
|
|
|
|
## the source header filename to derive the installed header filename.
|
|
|
|
## With nobase_ the installed path is $(includedir)/event2/ev*.h.
|
2010-08-13 11:41:37 -04:00
|
|
|
|
2011-02-25 10:35:12 -05:00
|
|
|
if INSTALL_LIBEVENT
|
|
|
|
nobase_include_HEADERS = $(EVENT2_EXPORT)
|
2010-08-13 11:41:37 -04:00
|
|
|
nobase_nodist_include_HEADERS = ./event2/event-config.h
|
2011-02-25 10:35:12 -05:00
|
|
|
else
|
|
|
|
noinst_HEADERS = $(EVENT2_EXPORT)
|
|
|
|
nodist_noinst_HEADERS = ./event2/event-config.h
|
|
|
|
endif
|