Merge pull request #3 from dforsber/fix-makefile

Fix CFLAGS ref
This commit is contained in:
Dan Forsberg 2020-11-11 11:26:03 +00:00 committed by GitHub
commit 2edb873167
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ SQLITE:=$(ROOT)/sqlite
# Flags
CXX = g++
OPTIMIZATIONS = -O3
CFLAGS = $CFLAGS -I $(SQLITE) $(OPTIMIZATIONS) -std=c++11 -Wall -fPIC -g
CFLAGS = -I $(SQLITE) $(OPTIMIZATIONS) -std=c++11 -Wall -fPIC -g
LIBS = -lparquet -lboost_regex -lboost_system -lboost_filesystem \
-lbrotlienc -lbrotlicommon -lbrotlidec -licui18n -licuuc -licudata \
-llz4 -lsnappy -lthrift -lz -lzstd -lcrypto -lssl