-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
137 lines (122 loc) · 3.96 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
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
ACLOCAL_AMFLAGS = -I m4
bin_PROGRAMS = tile_handler tile_broker broker_ctl expire_tiles tile_submitter
lib_LTLIBRARIES = \
librendermq_logging.la librendermq_proto.la librendermq_dqueue.la \
librendermq_http.la librendermq_storage.la
BOOST_LIBS=$(BOOST_LDFLAGS) \
$(BOOST_DATE_TIME_LIB) \
$(BOOST_FILESYSTEM_LIB) \
$(BOOST_IOSTREAMS_LIB) \
$(BOOST_PROGRAM_OPTIONS_LIB) \
-l$(BOOST_PYTHON_LIB) \
$(BOOST_REGEX_LIB) \
$(BOOST_SYSTEM_LIB) \
$(BOOST_THREAD_LIB)
librendermq_logging_la_SOURCES = \
logging/file_logger.cpp \
logging/logger.cpp \
logging/stdout_logger.cpp
librendermq_logging_la_CPPFLAGS = $(DEPS_CFLAGS) $(BOOST_CPPFLAGS)
librendermq_logging_la_LIBADD = $(DEPS_LIBS) $(BOOST_LIBS)
librendermq_proto_la_SOURCES = \
tile_utils.cpp \
zstream_pbuf.cpp \
zstream.cpp \
zmq_utils.cpp \
storage/meta_tile.cpp
nodist_librendermq_proto_la_SOURCES = proto/tile.pb.h proto/tile.pb.cc
BUILT_SOURCES = proto/tile.pb.h proto/tile.pb.cc
CLEANFILES = proto/tile.pb.h proto/tile.pb.cc
librendermq_proto_la_CPPFLAGS = $(DEPS_CFLAGS) $(BOOST_CPPFLAGS)
librendermq_proto_la_LIBADD = $(DEPS_LIBS) $(BOOST_LIBS) librendermq_logging.la
proto/tile.pb.cc proto/tile.pb.h: proto/tile.proto
@echo " PROTOC $<"; $(PROTOC) -I$(@D) --cpp_out=$(@D) $<
librendermq_dqueue_la_SOURCES = \
dqueue/distributed_queue.cpp \
dqueue/distributed_queue_config.cpp \
dqueue/zmq_backend.cpp \
dqueue/consistent_hash.cpp \
dqueue/backend.cpp \
dqueue/pgq_backend.cpp
librendermq_dqueue_la_CPPFLAGS = $(DEPS_CFLAGS) $(BOOST_CPPFLAGS)
librendermq_dqueue_la_LIBADD = $(DEPS_LIBS) $(BOOST_LIBS) librendermq_logging.la librendermq_proto.la
librendermq_http_la_SOURCES = \
http/http_date_parser.cpp \
http/http.cpp \
http/http_reply.cpp
librendermq_http_la_CPPFLAGS = $(DEPS_CFLAGS) $(BOOST_CPPFLAGS)
librendermq_http_la_LIBADD = $(DEPS_LIBS) $(BOOST_LIBS)
librendermq_storage_la_SOURCES = \
image/image.cpp \
storage/simple_http_storage.cpp \
storage/null_storage.cpp \
storage/compositing_storage.cpp \
storage/per_style_storage.cpp \
storage/tile_storage.cpp \
storage/hashwrapper.cpp \
storage/union_storage.cpp \
storage/null_handle.cpp \
storage/http_storage.cpp \
storage/disk_storage.cpp \
storage/lts_storage.cpp
librendermq_storage_la_CPPFLAGS = $(DEPS_CFLAGS) $(BOOST_CPPFLAGS)
librendermq_storage_la_LIBADD = $(DEPS_LIBS) $(BOOST_LIBS) librendermq_proto.la librendermq_http.la
tile_handler_SOURCES = \
mongrel_request.cpp \
tile_path_parser.cpp \
mongrel_request_parser.cpp \
storage_worker.cpp \
tile_handler_main.cpp \
tile_handler.cpp
tile_handler_CPPFLAGS = $(DEPS_CFLAGS) $(BOOST_CPPFLAGS)
tile_handler_LDADD = \
librendermq_logging.la \
librendermq_proto.la \
librendermq_dqueue.la \
librendermq_http.la \
librendermq_storage.la \
$(DEPS_LIBS) $(BOOST_LIBS)
broker_ctl_SOURCES = \
broker_ctl.cpp
broker_ctl_CPPFLAGS = $(DEPS_CFLAGS) $(BOOST_CPPFLAGS)
broker_ctl_LDADD = \
librendermq_logging.la \
librendermq_proto.la \
librendermq_dqueue.la \
$(DEPS_LIBS) $(BOOST_LIBS)
expire_tiles_SOURCES = \
expire_tiles.cpp
expire_tiles_CPPFLAGS = $(DEPS_CFLAGS) $(BOOST_CPPFLAGS)
expire_tiles_LDADD = \
librendermq_logging.la \
librendermq_proto.la \
librendermq_dqueue.la \
librendermq_http.la \
librendermq_storage.la \
$(DEPS_LIBS) $(BOOST_LIBS)
tile_broker_SOURCES = \
tile_broker.cpp \
tile_broker_impl.cpp
tile_broker_CPPFLAGS = $(DEPS_CFLAGS) $(BOOST_CPPFLAGS)
tile_broker_LDADD = \
librendermq_logging.la \
librendermq_proto.la \
librendermq_dqueue.la \
$(DEPS_LIBS) $(BOOST_LIBS)
tile_submitter_SOURCES = \
tile_submitter.cpp
tile_submitter_CPPFLAGS = $(DEPS_CFLAGS) $(BOOST_CPPFLAGS)
tile_submitter_LDADD = \
librendermq_logging.la \
librendermq_proto.la \
librendermq_dqueue.la \
librendermq_http.la \
librendermq_storage.la \
$(DEPS_LIBS) $(BOOST_LIBS)
# storage/tile_storage_python.cpp \
# dqueue/distributed_queue_python.cpp \
# logging/python.cpp
# storage/expiry_overlay.cpp \
# storage/expiry_service.cpp \
# storage/expiry_server_main.cpp \
# storage/expiry_server.cpp