diff options
Diffstat (limited to 'c++/examples/Makefile.in')
-rw-r--r-- | c++/examples/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in index eb67898..2a928b6 100644 --- a/c++/examples/Makefile.in +++ b/c++/examples/Makefile.in @@ -27,14 +27,16 @@ TEST_OBJ=$(TEST_SRC:.cpp=.lo) ## These are the programs that `make all' or `make tests' will build and which ## `make check' will run. List them in the order they should be run. -TEST_PROGS=$(TEST_SRC:.cpp=) +PROGS=$(TEST_SRC:.cpp=) + +TEST_SCRIPTS=testexamples.sh ## These are the files that `make clean' (and derivatives) will remove from ## this directory. CLEAN= ## How to build the programs... they all depend on the Fortran & C hdf5 libraries -$(TEST_PROGS): $(LIB) $(LIBHDF5) +$(PROGS): $(LIB) $(LIBHDF5) compound: compound.lo @$(LT_LINK_EXE) $(CXXFLAGS) -o $@ compound.lo $(LDFLAGS) $(LIB) $(LIBS) $(LIBHDF5) |