diff options
author | Taylor C. Richberger <taywee@gmx.com> | 2016-05-06 14:57:59 -0400 |
---|---|---|
committer | Taylor C. Richberger <taywee@gmx.com> | 2016-05-06 14:57:59 -0400 |
commit | 9e6b48cfaaa3e1477755f645b69a0e0f1117cce8 (patch) | |
tree | 649236095bbd895efe41e370a0c2621967cf64fc /Makefile | |
parent | improve some of the logic (diff) | |
parent | add full test suite (diff) | |
download | args.hxx-9e6b48cfaaa3e1477755f645b69a0e0f1117cce8.tar.xz |
Merge branch '9-need-a-testing-suite-built-out' into 'master'
add full test suite
Closes #9
See merge request !3
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -22,7 +22,7 @@ OBJECTS = $(SOURCES:.cxx=.o) DEPENDENCIES= $(SOURCES:.cxx=.d) EXECUTABLE = test -.PHONY: all clean pages +.PHONY: all clean pages runtests all: $(EXECUTABLE) @@ -42,3 +42,5 @@ pages: cp -rv html/* . rm -r html +runtests: test + ./test |