2 # Set the command for your C++ compiler, and specify any compiler flags you
3 # want to use (e.g. -g -Werror).
7 # The driver outputs TAP (Test Anything Protocol), so it can also be used with
8 # any TAP test harness (e.g. prove). Set the path to your test harness here,
9 # then use the `prove' target to run the tests with that harness.
14 ifeq ($(OS),Windows_NT)
31 ./driver$(EXEEXT) --abort-on-fail
34 $(PROVE) $(PROVEFLAGS) ./driver$(EXEEXT)
38 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
40 driver$(EXEEXT): $CLASSNAME$.cc
42 .PHONY: all clean distclean run test prove
44 # vim:ft=make:noet:ts=8