diff options
Diffstat (limited to 'Makefile.nmake')
-rw-r--r-- | Makefile.nmake | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile.nmake b/Makefile.nmake index 0436bc6..0352b6d 100644 --- a/Makefile.nmake +++ b/Makefile.nmake @@ -33,10 +33,7 @@ man\man1\cmark.1: man\cmark.1.md pandoc $? -o $@ -s -t man
test: $(SPEC) all
- perl runtests.pl $(SPEC) $(PROG)
-
-testlib: $(SPEC) all
- perl runtests.pl $(SPEC) .\wrapper.py
+ @pushd $(BUILDDIR) && $(MAKE) test ARGS="-V" && popd
distclean: clean
del /q src\scanners.c 2> nul
|