updated documentation finished merging the Fortran interface and refactoring H5Block started an H5Block regression test
19 lines
273 B
Makefile
19 lines
273 B
Makefile
# COMPILERS
|
|
CC = @CC@
|
|
CXX = @CXX@
|
|
|
|
LIBS = @LIBS@
|
|
INCLUDES = -I../include @INCLUDES@
|
|
|
|
OBJEXT = o
|
|
|
|
lib_LIBRARIES = libH5XX.a
|
|
include_HEADERS = H5Fed.hh
|
|
libH5XX_a_SOURCES = H5Fed.cc
|
|
|
|
libH5XX.a: $(libH5XX_a_OBJECTS)
|
|
${AR} rucs $@ $^
|
|
|
|
%.o : %.cc
|
|
$(CXX) $(CFLAGS) $(INC) -c $<
|