blob: 5a3d2dc7cd90b9a33d230b1d8c6fa38fd9d1cd3a (
plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
|
lib_LTLIBRARIES = librabbitmq/librabbitmq.la
librabbitmq_librabbitmq_la_SOURCES = \
librabbitmq/amqp_api.c \
librabbitmq/amqp_connection.c \
librabbitmq/amqp_framing.c \
librabbitmq/amqp_mem.c \
librabbitmq/amqp_private.h \
librabbitmq/amqp_socket.c \
librabbitmq/amqp_table.c \
librabbitmq/amqp_url.c
librabbitmq_librabbitmq_la_CFLAGS = \
-I$(top_srcdir)/librabbitmq \
-DBUILDING_LIBRABBITMQ
if OS_UNIX
librabbitmq_librabbitmq_la_SOURCES += librabbitmq/unix/socket.c
librabbitmq_librabbitmq_la_SOURCES += librabbitmq/unix/socket.h
librabbitmq_librabbitmq_la_CFLAGS += -I$(top_srcdir)/librabbitmq/unix
endif
if OS_WIN32
librabbitmq_librabbitmq_la_SOURCES += librabbitmq/windows/socket.c
librabbitmq_librabbitmq_la_SOURCES += librabbitmq/windows/socket.h
librabbitmq_librabbitmq_la_CFLAGS += -I$(top_srcdir)/librabbitmq/windows
endif
include_HEADERS = \
librabbitmq/amqp.h \
librabbitmq/amqp_framing.h
BUILT_SOURCES = \
librabbitmq/amqp_framing.h \
librabbitmq/amqp_framing.c
codegen_py = $(top_srcdir)/librabbitmq/codegen.py
amqp_codegen_json = $(top_srcdir)/codegen/amqp-rabbitmq-0.9.1.json
librabbitmq/amqp_framing.h: $(amqp_codegen_json) $(codegen_py)
PYTHONPATH=$(top_srcdir)/codegen $(PYTHON) $(codegen_py) header $< $@
librabbitmq/amqp_framing.c: $(amqp_codegen_json) $(codegen_py)
PYTHONPATH=$(top_srcdir)/codegen $(PYTHON) $(codegen_py) body $< $@
AM_CFLAGS = -I$(top_srcdir)/librabbitmq
check_PROGRAMS = \
tests/test_tables \
tests/test_parse_url
TESTS = $(check_PROGRAMS)
tests_test_tables_SOURCES = tests/test_tables.c
tests_test_tables_LDADD = librabbitmq/librabbitmq.la
tests_test_parse_url_SOURCES = tests/test_parse_url.c
tests_test_parse_url_LDADD = librabbitmq/librabbitmq.la
noinst_LTLIBRARIES = examples/libutils.la
examples_libutils_la_SOURCES = \
examples/utils.c \
examples/utils.h
if OS_UNIX
examples_libutils_la_SOURCES += examples/unix/platform_utils.c
endif
if OS_WIN32
examples_libutils_la_SOURCES += examples/windows/platform_utils.c
endif
noinst_PROGRAMS = \
examples/amqp_bind \
examples/amqp_consumer \
examples/amqp_exchange_declare \
examples/amqp_listen \
examples/amqp_listenq \
examples/amqp_producer \
examples/amqp_sendstring \
examples/amqp_unbind
examples_amqp_sendstring_SOURCES = examples/amqp_sendstring.c
examples_amqp_sendstring_LDADD = \
examples/libutils.la \
librabbitmq/librabbitmq.la
examples_amqp_exchange_declare_SOURCES = examples/amqp_exchange_declare.c
examples_amqp_exchange_declare_LDADD = \
examples/libutils.la \
librabbitmq/librabbitmq.la
examples_amqp_listen_SOURCES = examples/amqp_listen.c
examples_amqp_listen_LDADD = \
examples/libutils.la \
librabbitmq/librabbitmq.la
examples_amqp_producer_SOURCES = examples/amqp_producer.c
examples_amqp_producer_LDADD = \
examples/libutils.la \
librabbitmq/librabbitmq.la
examples_amqp_consumer_SOURCES = examples/amqp_consumer.c
examples_amqp_consumer_LDADD = \
examples/libutils.la \
librabbitmq/librabbitmq.la
examples_amqp_unbind_SOURCES = examples/amqp_unbind.c
examples_amqp_unbind_LDADD = \
examples/libutils.la \
librabbitmq/librabbitmq.la
examples_amqp_bind_SOURCES = examples/amqp_bind.c
examples_amqp_bind_LDADD = \
examples/libutils.la \
librabbitmq/librabbitmq.la
examples_amqp_listenq_SOURCES = examples/amqp_listenq.c
examples_amqp_listenq_LDADD = \
examples/libutils.la \
librabbitmq/librabbitmq.la
if TOOLS
noinst_LTLIBRARIES += tools/libcommon.la
tools_libcommon_la_SOURCES = \
tools/common.c \
tools/common.h
tools_libcommon_la_CFLAGS = \
-I$(top_srcdir)/librabbitmq \
-I$(top_srcdir)/tools
if OS_UNIX
tools_libcommon_la_SOURCES += tools/unix/process.c
tools_libcommon_la_SOURCES += tools/unix/process.h
tools_platform_CFLAGS = -I$(top_srcdir)/tools/unix
endif
if OS_WIN32
tools_libcommon_la_SOURCES += tools/windows/compat.c
tools_libcommon_la_SOURCES += tools/windows/compat.h
tools_libcommon_la_SOURCES += tools/windows/process.c
tools_libcommon_la_SOURCES += tools/windows/process.h
tools_platform_CFLAGS = -I$(top_srcdir)/tools/windows
endif
bin_PROGRAMS = \
tools/amqp-consume \
tools/amqp-declare-queue \
tools/amqp-delete-queue \
tools/amqp-get \
tools/amqp-publish
tools_amqp_publish_SOURCES = tools/publish.c
tools_amqp_publish_CFLAGS = \
$(POPT_CFLAGS) \
$(tools_platform_CFLAGS) \
-I$(top_srcdir)/librabbitmq \
-I$(top_srcdir)/tools
tools_amqp_publish_LDADD = \
$(POPT_LIBS) \
librabbitmq/librabbitmq.la \
tools/libcommon.la
tools_amqp_get_SOURCES = tools/get.c
tools_amqp_get_CFLAGS = \
$(POPT_CFLAGS) \
$(tools_platform_CFLAGS) \
-I$(top_srcdir)/librabbitmq \
-I$(top_srcdir)/tools
tools_amqp_get_LDADD = \
$(POPT_LIBS) \
librabbitmq/librabbitmq.la \
tools/libcommon.la
tools_amqp_consume_SOURCES = tools/consume.c
tools_amqp_consume_CFLAGS = \
$(POPT_CFLAGS) \
$(tools_platform_CFLAGS) \
-I$(top_srcdir)/librabbitmq \
-I$(top_srcdir)/tools
tools_amqp_consume_LDADD = \
$(POPT_LIBS) \
librabbitmq/librabbitmq.la \
tools/libcommon.la
tools_amqp_declare_queue_SOURCES = tools/declare_queue.c
tools_amqp_declare_queue_CFLAGS = \
$(POPT_CFLAGS) \
$(tools_platform_CFLAGS) \
-I$(top_srcdir)/librabbitmq \
-I$(top_srcdir)/tools
tools_amqp_declare_queue_LDADD = \
$(POPT_LIBS) \
librabbitmq/librabbitmq.la \
tools/libcommon.la
tools_amqp_delete_queue_SOURCES = tools/delete_queue.c
tools_amqp_delete_queue_CFLAGS = \
$(POPT_CFLAGS) \
$(tools_platform_CFLAGS) \
-I$(top_srcdir)/librabbitmq \
-I$(top_srcdir)/tools
tools_amqp_delete_queue_LDADD = \
$(POPT_LIBS) \
librabbitmq/librabbitmq.la \
tools/libcommon.la
if DOCS
man_MANS = \
$(top_srcdir)/tools/doc/amqp-publish.1 \
$(top_srcdir)/tools/doc/amqp-consume.1 \
$(top_srcdir)/tools/doc/amqp-get.1 \
$(top_srcdir)/tools/doc/amqp-declare-queue.1 \
$(top_srcdir)/tools/doc/amqp-delete-queue.1 \
$(top_srcdir)/tools/doc/librabbitmq-tools.7
# xmlto's --searchpath doesn't get passed through to xmllint, so we disable
# xmllint validation with --skip-validation for the benefit of build/source
# separation as required by distcheck, debian packaging etc.
XMLTO_FLAGS = \
--skip-validation
%.1: %.xml tools/doc/man-date.ent
$(XMLTO) $(XMLTO_FLAGS) -o $(top_srcdir)/tools/doc man $<
%.7: %.xml tools/doc/man-date.ent
$(XMLTO) $(XMLTO_FLAGS) -o $(top_srcdir)/tools/doc man $<
$(top_srcdir)/tools/doc/man-date.ent:
$(MKDIR_P) tools/doc
date +'%Y-%m-%d' > $@
endif # DOCS
endif # TOOLS
EXTRA_DIST = \
$(man_MANS) \
LICENSE-MIT \
codegen \
debian \
librabbitmq/codegen.py \
tests/test_tables.expected \
tools/doc/amqp-consume.xml \
tools/doc/amqp-declare-queue.xml \
tools/doc/amqp-delete-queue.xml \
tools/doc/amqp-get.xml \
tools/doc/amqp-publish.xml \
tools/doc/librabbitmq-tools.xml \
tools/doc/man-date.ent
MOSTLYCLEANFILES = \
$(man_MANS) \
tools/doc/man-date.ent
clean-local:
-$(MAKE) -C codegen clean
distclean-local:
-$(MAKE) -C codegen distclean
|