diff -r c4d84af6b609 -r c9e370c3c26c Makefile
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
 ARCHFLAGS	?=
 
 LDFLAGS 	+= $(ARCHFLAGS) -ldl -pthread
-CXXFLAGS	+= $(ARCHFLAGS) -g -Wall -Wextra -Ivamp-plugin-sdk -pthread
+CXXFLAGS	+= $(ARCHFLAGS) -std=c++98 -g -Wall -Wextra -Ivamp-plugin-sdk -pthread
 
 # We include the Vamp Host SDK sources in the build here, so that we
 # can build the entire thing with debug symbols even though the SDK
@@ -34,9 +34,12 @@
 	TestDefaults.o \
 	TestInitialise.o
 
-vamp-plugin-tester:	$(OBJECTS) $(VAMP_OBJECTS)
+vamp-plugin-tester:	vamp-plugin-sdk/README $(OBJECTS) $(VAMP_OBJECTS)
 	$(CXX) $(OBJECTS) -o $@ $(LDFLAGS)
 
+vamp-plugin-sdk/README:
+	./vext install
+
 clean:
 	rm -f $(OBJECTS) $(VAMP_OBJECTS)
 
