Skip to content
Snippets Groups Projects
Commit 42e5def6 authored by zhanxw's avatar zhanxw
Browse files

fix Makefile

parent 719e2932
No related merge requests found
......@@ -35,9 +35,14 @@ $(BZIP2_INC):
SQLITE_INC = ../third/sqlite/include
SQLITE_LIB = ../third/sqlite/lib/libsqlite3.a
$(SQLITE_INC) $(SQLITE_LIB):
(cd ../third; $(MAKE) sqlite)
ZSTD_INC = ../third/zstd/lib
ZSTD_LIB = ../third/zstd/lib/libzstd.a
$(ZSTD_INC) $(ZSTD_LIB):
(cd ../third; $(MAKE) zstd)
THIRD_INC = $(BCF_INC) $(TABIX_INC) $(PCRE_INC) $(BZIP2_INC) $(ZLIB_INC) $(GSL_INC) $(ZSTD_INC)
THIRD_INC_FLAGS = $(addprefix -I,$(THIRD_INC))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment