summaryrefslogtreecommitdiff
path: root/cpp/examples/pub-sub/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/examples/pub-sub/Makefile')
-rw-r--r--cpp/examples/pub-sub/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/cpp/examples/pub-sub/Makefile b/cpp/examples/pub-sub/Makefile
deleted file mode 100644
index ea08031da5..0000000000
--- a/cpp/examples/pub-sub/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-CXX=g++
-CXXFLAGS=
-
-PROGRAMS=topic_config_queues topic_listener topic_publisher
-all: $(PROGRAMS)
-
-topic_config_queues: topic_config_queues.cpp
- $(CXX) $(CXXFLAGS) -lqpidclient -o $@ $^
-
-topic_listener: topic_listener.cpp
- $(CXX) $(CXXFLAGS) -lqpidclient -o $@ $^
-
-topic_publisher: topic_publisher.cpp
- $(CXX) $(CXXFLAGS) -lqpidclient -o $@ $^
-
-clean:
- rm -f $(PROGRAMS)