diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2014-12-17 11:32:49 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2014-12-17 11:32:49 (GMT) |
commit | f68eead36c0eb8f6f4e5c912dfe204c52bb7b7c5 (patch) | |
tree | 679a95436fb5a3a3729ad1e674f7e204296b96ef /programs | |
parent | 0569a68edd58d741e46ec1e50d6dd936de77dbfa (diff) | |
download | lz4-f68eead36c0eb8f6f4e5c912dfe204c52bb7b7c5.zip lz4-f68eead36c0eb8f6f4e5c912dfe204c52bb7b7c5.tar.gz lz4-f68eead36c0eb8f6f4e5c912dfe204c52bb7b7c5.tar.bz2 |
Added : -pedantic compilation option
Diffstat (limited to 'programs')
-rw-r--r-- | programs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/Makefile b/programs/Makefile index 02052ea..543eb7c 100644 --- a/programs/Makefile +++ b/programs/Makefile @@ -36,7 +36,7 @@ RELEASE?= r126 DESTDIR?= PREFIX ?= /usr CFLAGS ?= -O3 -CFLAGS += -std=c99 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -DLZ4_VERSION=\"$(RELEASE)\" +CFLAGS += -std=c99 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -pedantic -DLZ4_VERSION=\"$(RELEASE)\" FLAGS = -I../lib $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) BINDIR=$(PREFIX)/bin |