vlsvrs 1.0.0

VLSV reader with C and Python bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
include ../Config

TARGET = ../bin/zfp
INCS = -I../include
LIBS = -L../lib -lzfp $(LDFLAGS) -lm

all: $(TARGET)

$(TARGET): zfp.c ../lib/$(LIBZFP)
	mkdir -p ../bin
	$(CC) $(CFLAGS) $(INCS) zfp.c $(LIBS) -o $(TARGET)

clean:
	rm -f $(TARGET) fields.o