summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2018-04-11 23:41:25 (GMT)
committerYann Collet <cyan@fb.com>2018-04-11 23:41:25 (GMT)
commitca388790e689ddb09e5e5f7f86a5bdb17dee67d7 (patch)
treeb67f2e425634dd0a8b53750fb8127d9ac314c859
parent7b3cd10579fdc3d62bbf5e00f07ca19068a4403b (diff)
downloadlz4-ca388790e689ddb09e5e5f7f86a5bdb17dee67d7.zip
lz4-ca388790e689ddb09e5e5f7f86a5bdb17dee67d7.tar.gz
lz4-ca388790e689ddb09e5e5f7f86a5bdb17dee67d7.tar.bz2
allow system-defined CPPFLAGS in /tests
-rw-r--r--tests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index d11b7fe..25f00b8 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -39,7 +39,7 @@ CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow \
-Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes \
-Wpointer-arith -Wstrict-aliasing=1
CFLAGS += $(DEBUGFLAGS) $(MOREFLAGS)
-CPPFLAGS:= -I$(LZ4DIR) -I$(PRGDIR) -DXXH_NAMESPACE=LZ4_
+CPPFLAGS+= -I$(LZ4DIR) -I$(PRGDIR) -DXXH_NAMESPACE=LZ4_
FLAGS = $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)