summaryrefslogtreecommitdiffstats
path: root/programs/Makefile
diff options
context:
space:
mode:
authorPrzemyslaw Skibinski <inikep@gmail.com>2016-11-09 11:52:27 (GMT)
committerPrzemyslaw Skibinski <inikep@gmail.com>2016-11-09 11:52:27 (GMT)
commit7df658ec1b9976e40d3c6abdf70da4560b2edd38 (patch)
tree49b6c70de7d1fcad1c71f0f5d61b6ce8b212c5fb /programs/Makefile
parent4a6e7327c7be56abdd3c5a32d8a69213f46956d3 (diff)
downloadlz4-7df658ec1b9976e40d3c6abdf70da4560b2edd38.zip
lz4-7df658ec1b9976e40d3c6abdf70da4560b2edd38.tar.gz
lz4-7df658ec1b9976e40d3c6abdf70da4560b2edd38.tar.bz2
removed LZ4_DLL_EXPORT=1 (2)
Diffstat (limited to 'programs/Makefile')
-rw-r--r--programs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/Makefile b/programs/Makefile
index 39672b3..5c2bdcd 100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -37,7 +37,7 @@ LZ4DIR := ../lib
CFLAGS ?= -O3 # can select custom flags. For example : CFLAGS="-O2 -g" make
CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow -Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes -Wpointer-arith
CFLAGS += $(MOREFLAGS)
-CPPFLAGS:= -I$(LZ4DIR) -DXXH_NAMESPACE=LZ4_ -DLZ4_DLL_EXPORT=1
+CPPFLAGS:= -I$(LZ4DIR) -DXXH_NAMESPACE=LZ4_
FLAGS := $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)