# HDF5 Library Examples Makefile(.in) -*- makefile -*- # # Copyright (C) 1997 National Center for Supercomputing Applications. # All rights reserved. # # @COMMENCE@ # Add include directory to the C preprocessor flags and the hdf5 library # to the library list. CPPFLAGS=-I. -I../src @CPPFLAGS@ LIBS=../src/libhdf5.a @LIBS@ # These are the programs that `make all' will build, `make install' # will copy to the binaries directory, and `make uninstall' will # remove from that directory. PROGS=h5_chunk_read h5_compound h5_extend_write h5_group h5_read h5_write \ h5_select h5_attribute # These are the programs that `make test' will run TESTS= # These are the files that `make clean' (and derivatives) will remove from # this directory. CLEAN=*.h5 # List all source files here. The list of object files will be # created by replacing the `.c' with a `.o'. This list is necessary # for building automatic dependencies. PROG_SRC=h5_chunk_read.c h5_compound.c h5_extend_write.c h5_group.c \ h5_read.c h5_write.c h5_select.c h5_attribute.c PROG_OBJ=$(PROG_SRC:.c=.o) # How to build the programs... they all depend on the hdf5 library $(PROGS): ../src/libhdf5.a h5_chunk_read: h5_chunk_read.o $(CC) $(CFLAGS) -o $@ h5_chunk_read.o $(LDFLAGS) $(LIBS) h5_compound: h5_compound.o $(CC) $(CFLAGS) -o $@ h5_compound.o $(LDFLAGS) $(LIBS) h5_extend_write: h5_extend_write.o $(CC) $(CFLAGS) -o $@ h5_extend_write.o $(LDFLAGS) $(LIBS) h5_group: h5_group.o $(CC) $(CFLAGS) -o $@ h5_group.o $(LDFLAGS) $(LIBS) h5_write: h5_write.o $(CC) $(CFLAGS) -o $@ h5_write.o $(LDFLAGS) $(LIBS) h5_read: h5_read.o $(CC) $(CFLAGS) -o $@ h5_read.o $(LDFLAGS) $(LIBS) h5_select: h5_select.o $(CC) $(CFLAGS) -o $@ h5_select.o $(LDFLAGS) $(LIBS) h5_attribute: h5_attribute.o $(CC) $(CFLAGS) -o $@ h5_attribute.o $(LDFLAGS) $(LIBS) @CONCLUDE@