From 613c706c969f9f5cb8340e19490ce6589998c0ce Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Mon, 18 Jul 2016 03:27:26 +0200 Subject: [PATCH] fixed zlibWrapper examples for lib/zstd.h --- zlibWrapper/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zlibWrapper/Makefile b/zlibWrapper/Makefile index 21d56c5e0..9ad1c01dd 100644 --- a/zlibWrapper/Makefile +++ b/zlibWrapper/Makefile @@ -17,8 +17,8 @@ endif ZLIBWRAPPER_PATH = . EXAMPLE_PATH = examples -CC = gcc -CFLAGS = $(LOC) -I../lib/common -I$(ZLIBDIR) -I$(ZLIBWRAPPER_PATH) -O3 -std=gnu90 +CC ?= gcc +CFLAGS = $(LOC) -I../lib -I../lib/common -I$(ZLIBDIR) -I$(ZLIBWRAPPER_PATH) -O3 -std=gnu90 CFLAGS += -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow -Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes -Wundef LDFLAGS = $(LOC) RM = rm -f