Add test nack scenario for best-route, and a framework to support tests tools
refs #3157
Change-Id: I12d0241bd45e1af6796765a03751e445a6a23525
diff --git a/install_helpers/tools/Makefile b/install_helpers/tools/Makefile
new file mode 100644
index 0000000..fa5c8cb
--- /dev/null
+++ b/install_helpers/tools/Makefile
@@ -0,0 +1,20 @@
+CXX = g++
+CXXFLAGS = -std=c++11 -Wall -Werror `pkg-config --cflags libndn-cxx`
+LIBS = `pkg-config --libs libndn-cxx`
+DESTDIR ?= /usr/local
+
+PROGRAMS = test-nack-consumer
+
+all: $(PROGRAMS)
+
+%: %.cpp
+ $(CXX) $(CXXFLAGS) -o $@ $< $(LIBS)
+
+clean:
+ rm -f $(PROGRAMS)
+
+install: all
+ cp $(PROGRAMS) $(DESTDIR)/bin/
+
+uninstall:
+ cd $(DESTDIR)/bin && rm -f $(PROGRAMS)