Skip to content

Commit

Permalink
add the missing blosc2 makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
fangq committed Sep 13, 2022
1 parent 944fb12 commit 552a007
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions src/blosc2/Makefile
@@ -0,0 +1,22 @@
############################################################
# blosc2 makefile
############################################################

BLOSC_SRC=blosc
ZSTD_SRC=internal-complibs/zstd-1.5.2
LIBBLOSC2=$(BLOSC_SRC)/libblosc2.a
MAKE=make


all: $(LIBBLOSC2) zstd

$(LIBBLOSC2):
-$(MAKE) -C $(BLOSC_SRC) lib
zstd:
-$(MAKE) -C $(ZSTD_SRC) libzstd.a
clean:
-$(MAKE) -C $(BLOSC_SRC) clean
-$(MAKE) -C $(ZSTD_SRC) clean

.DEFAULT_GOAL := all

2 changes: 1 addition & 1 deletion src/blosc2/blosc/Makefile
Expand Up @@ -23,7 +23,7 @@ DOXY := doxygen
DOCDIR := $(ZMATDIR)/doc
DOXYCFG=zmat.cfg

INCLUDEDIRS=-I../../lz4 -I../include
INCLUDEDIRS=-I../../lz4 -I../include -I../internal-complibs/zstd-1.5.2

CUOMPLINK=

Expand Down

0 comments on commit 552a007

Please sign in to comment.