blob: 719a7e741689485f6f8e87794ee89e8b81c14ba9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
CXX=g++
CXXFLAGS=
PROGRAMS=fanout_config_queues listener fanout_publisher
all: $(PROGRAMS)
fanout_config_queues: fanout_config_queues.cpp
$(CXX) $(CXXFLAGS) -lqpidclient -o $@ $^
listener: listener.cpp
$(CXX) $(CXXFLAGS) -lqpidclient -o $@ $^
fanout_publisher: fanout_publisher.cpp
$(CXX) $(CXXFLAGS) -lqpidclient -o $@ $^
clean:
rm -f $(PROGRAMS)
|