diff options
author | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-11-24 21:35:53 +0100 |
---|---|---|
committer | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-11-24 21:35:53 +0100 |
commit | 7a4cd7ed0f07d8c41408da02b2367c979d4ff86e (patch) | |
tree | d1404246b69c68341bc9e074e40957a8c3695e53 | |
parent | 79ea99b9eb6c3ae8f40cf52da0c0dd2b998d6bf4 (diff) |
Run nmake test with /nologo
-rw-r--r-- | Makefile.nmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.nmake b/Makefile.nmake index 0352b6d..54034c4 100644 --- a/Makefile.nmake +++ b/Makefile.nmake @@ -33,7 +33,7 @@ man\man1\cmark.1: man\cmark.1.md pandoc $? -o $@ -s -t man
test: $(SPEC) all
- @pushd $(BUILDDIR) && $(MAKE) test ARGS="-V" && popd
+ @pushd $(BUILDDIR) && $(MAKE) /nologo test ARGS="-V" && popd
distclean: clean
del /q src\scanners.c 2> nul
|