-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
86 lines (73 loc) · 1.67 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
libmsg_la_SOURCES = \
msg/Message.cc \
msg/Messenger.cc \
msg/msg_types.cc
noinst_HEADERS += \
msg/Connection.h \
msg/Dispatcher.h \
msg/Message.h \
msg/Messenger.h \
msg/SimplePolicyMessenger.h \
msg/msg_types.h
libmsg_la_SOURCES += \
msg/simple/Accepter.cc \
msg/simple/DispatchQueue.cc \
msg/simple/Pipe.cc \
msg/simple/PipeConnection.cc \
msg/simple/SimpleMessenger.cc \
msg/async/AsyncConnection.cc \
msg/async/AsyncMessenger.cc \
msg/async/Event.cc \
msg/async/net_handler.cc \
msg/async/EventSelect.cc
if LINUX
libmsg_la_SOURCES += msg/async/EventEpoll.cc
endif
if DARWIN
libmsg_la_SOURCES += msg/async/EventKqueue.cc
endif
if FREEBSD
libmsg_la_SOURCES += msg/async/EventKqueue.cc
endif
noinst_HEADERS += \
msg/simple/Accepter.h \
msg/simple/DispatchQueue.h \
msg/simple/Pipe.h \
msg/simple/PipeConnection.h \
msg/simple/SimpleMessenger.h \
msg/async/AsyncConnection.h \
msg/async/AsyncMessenger.h \
msg/async/Event.h \
msg/async/EventEpoll.h \
msg/async/EventSelect.h \
msg/async/net_handler.h
if LINUX
libmsg_la_SOURCES += msg/async/EventEpoll.h
endif
if DARWIN
libmsg_la_SOURCES += msg/async/EventKqueue.h
endif
if FREEBSD
libmsg_la_SOURCES += msg/async/EventKqueue.h
endif
if ENABLE_XIO
libmsg_la_SOURCES += \
msg/xio/QueueStrategy.cc \
msg/xio/XioConnection.cc \
msg/xio/XioMessenger.cc \
msg/xio/XioMsg.cc \
msg/xio/XioPortal.cc \
msg/xio/XioPool.cc
noinst_HEADERS += \
msg/xio/DispatchStrategy.h \
msg/xio/FastStrategy.h \
msg/xio/QueueStrategy.h \
msg/xio/XioConnection.h \
msg/xio/XioInSeq.h \
msg/xio/XioMessenger.h \
msg/xio/XioMsg.h \
msg/xio/XioPool.h \
msg/xio/XioPortal.h \
msg/xio/XioSubmit.h
endif
noinst_LTLIBRARIES += libmsg.la