commit | a864db0dd62352981e8f550ca4475524384408ec | [log] [tgz] |
---|---|---|
author | Philippe Antoine <contact@catenacyber.fr> | Wed Jul 10 20:37:57 2019 +0200 |
committer | Philippe Antoine <contact@catenacyber.fr> | Wed Jul 10 20:37:57 2019 +0200 |
tree | 498cae01f32d46de99718faa664aec6007d352e1 | |
parent | 42a2ce8255e75ea54182e21e9ff611c1c9d19f22 [diff] [blame] |
Do not build fuzz on windows
diff --git a/programs/Makefile b/programs/Makefile index 228a60e..1d14b70 100644 --- a/programs/Makefile +++ b/programs/Makefile
@@ -92,7 +92,13 @@ .PHONY: all clean list fuzz -all: $(APPS) fuzz +all: $(APPS) +ifndef WINDOWS +# APPS doesn't include the fuzzing programs, which aren't "normal" +# sample or test programs, and don't build with MSVC which is +# warning about fopen +all: fuzz +endif fuzz: $(MAKE) -C fuzz