blob: 4f2045618125f32e7b23b05abeaacb39621be866 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
if BUILD_FORWARDER
FORWARDER_DIR = zmq_forwarder
endif
if BUILD_STREAMER
STREAMER_DIR = zmq_streamer
endif
if BUILD_QUEUE
QUEUE_DIR = zmq_queue
endif
SUBDIRS = $(FORWARDER_DIR) $(STREAMER_DIR) $(QUEUE_DIR)
DIST_SUBDIRS = zmq_forwarder zmq_streamer zmq_queue
|