Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ endif
CC = gcc
C++ = g++
ifneq ($(CBFDEBUG),)
CFLAGS = -g -O0 -Wall -D_USE_XOPEN_EXTENDED -fno-strict-aliasing -DHAVE_REALPATH -DCBFDEBUG=1 -DHAVE_UNISTD_H $(HDF5CFLAGS)
CFLAGS = -g -O0 -Wall -D_USE_XOPEN_EXTENDED -fno-strict-aliasing -DCBFDEBUG=1 -DHAVE_REALPATH -DHAVE_UNISTD_H $(HDF5CFLAGS)
else
CFLAGS = -g -O3 -Wall -D_USE_XOPEN_EXTENDED -fno-strict-aliasing -DHAVE_REALPATH -DHAVE_UNISTD_H $(HDF5CFLAGS)
endif
Expand Down Expand Up @@ -1187,6 +1187,10 @@ all:: $(BIN)/test_xds_binary \
$(BIN)/test_fcb_read_image
endif

ifneq ($(CBFLIB_DONT_USE_PY3CIFRW),yes)
all:: $(PY3CBF)/_pycbf.$(PY3CBFEXT)
endif

SO_PREFIX ?= lib
SO_EXT ?= so

Expand Down
4 changes: 4 additions & 0 deletions Makefile_LINUX
Original file line number Diff line number Diff line change
Expand Up @@ -1183,6 +1183,10 @@ all:: $(BIN)/test_xds_binary \
$(BIN)/test_fcb_read_image
endif

ifneq ($(CBFLIB_DONT_USE_PY3CIFRW),yes)
all:: $(PY3CBF)/_pycbf.$(PY3CBFEXT)
endif

SO_PREFIX ?= lib
SO_EXT ?= so

Expand Down
4 changes: 4 additions & 0 deletions Makefile_MINGW
Original file line number Diff line number Diff line change
Expand Up @@ -1197,6 +1197,10 @@ all:: $(BIN)/test_xds_binary \
$(BIN)/test_fcb_read_image
endif

ifneq ($(CBFLIB_DONT_USE_PY3CIFRW),yes)
all:: $(PY3CBF)/_pycbf.$(PY3CBFEXT)
endif

SO_PREFIX ?= lib
SO_EXT ?= so

Expand Down
4 changes: 4 additions & 0 deletions Makefile_MSYS2
Original file line number Diff line number Diff line change
Expand Up @@ -1183,6 +1183,10 @@ all:: $(BIN)/test_xds_binary \
$(BIN)/test_fcb_read_image
endif

ifneq ($(CBFLIB_DONT_USE_PY3CIFRW),yes)
all:: $(PY3CBF)/_pycbf.$(PY3CBFEXT)
endif

SO_PREFIX ?= lib
SO_EXT ?= so

Expand Down
4 changes: 4 additions & 0 deletions Makefile_OSX
Original file line number Diff line number Diff line change
Expand Up @@ -1179,6 +1179,10 @@ all:: $(BIN)/test_xds_binary \
$(BIN)/test_fcb_read_image
endif

ifneq ($(CBFLIB_DONT_USE_PY3CIFRW),yes)
all:: $(PY3CBF)/_pycbf.$(PY3CBFEXT)
endif

SO_PREFIX ?= lib
SO_EXT ?= so

Expand Down
6 changes: 5 additions & 1 deletion m4/Makefile.m4
Original file line number Diff line number Diff line change
Expand Up @@ -1553,6 +1553,10 @@ all:: $(BIN)/test_xds_binary \
$(BIN)/test_fcb_read_image
endif

ifneq ($(CBFLIB_DONT_USE_PY3CIFRW),yes)
all:: $(PY3CBF)/_pycbf.$(PY3CBFEXT)
endif

SO_PREFIX ?= lib
SO_EXT ?= so

Expand Down Expand Up @@ -1913,7 +1917,7 @@ build_py3ply: $(M4)/Makefile.m4
touch build_py3ply
$(PY3PLY): build_py3ply
-rm -rf $(PY3PLY)
git clone $(PY3PLYURL)
wget -O - -nv $(PY3PLYURL) | tar -xzf -
(cd $(PY3PLY); \
PYTHONPATH=$(PY3CIFRW_PREFIX)/lib/python:$(PY3CIFRW_PREFIX)/lib64/python; export PYTHONPATH; \
mkdir -p $(PY3CIFRW_PREFIX)/lib/python/site-packages; \
Expand Down