added -Wformat-security flag, as recommended by @pixelb

This commit is contained in:
Yann Collet
2017-03-05 21:17:32 -08:00
parent 1f2c95c5f3
commit 8b1d004031
5 changed files with 11 additions and 5 deletions
+5 -1
View File
@@ -23,7 +23,7 @@ EXT =
endif
.PHONY: default
default: lib zstd-release
default: lib-release zstd-release
.PHONY: all
all: | allmost examples manual
@@ -42,6 +42,10 @@ all32:
.PHONY: lib
lib:
@$(MAKE) -C $(ZSTDDIR) $@
.PHONY: lib-release
lib-release:
@$(MAKE) -C $(ZSTDDIR)
.PHONY: zstd