diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-11-15 19:20:06 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-11-15 19:20:06 (GMT) |
commit | 0efd9ceadfe08f8d706c4f7c41bc60c4f11b35eb (patch) | |
tree | 4885cf448f46baf7038b84254af5daee0f2c4e3b /test/Makefile.in | |
parent | 5b83c94b9e822fde35107d30150ab47eebe20d15 (diff) | |
download | hdf5-0efd9ceadfe08f8d706c4f7c41bc60c4f11b35eb.zip hdf5-0efd9ceadfe08f8d706c4f7c41bc60c4f11b35eb.tar.gz hdf5-0efd9ceadfe08f8d706c4f7c41bc60c4f11b35eb.tar.bz2 |
[svn-r11726] Purpose:
Bug fix
Description:
Fixed bug in hl/src Makefile that was deleting y.tab.c.
Running bin/reconfigure changed a few other files as well (somebody
probably updated Makefiles.am but forgot to bin/reconfigure).
Solution:
Automake in its wisdom adds the line "rm *.tab.c" to every distclean
in every directory. I assume that it assumes that such files are
generated during the build. Supplied an empty distclean-compile
target to remove this line from the Makefiles.in.
Platforms tested:
mir, sleipnir, shanti
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index ac41b59..fe9ba5a 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -332,10 +332,10 @@ SOURCES = $(libh5test_la_SOURCES) b+tree.c big.c bittests.c \ gen_deflate.c gen_filters.c gen_new_array.c gen_new_fill.c \ gen_new_group.c gen_new_mtime.c gen_new_super.c \ gen_noencoder.c gen_nullspace.c getname.c gheap.c hyperslab.c \ - istore.c lheap.c links.c mount.c mtime.c ntypes.c objcopy.c ohdr.c \ - pool.c reserved.c set_extent.c sheap.c space_overflow.c stab.c \ - stream_test.c $(testhdf5_SOURCES) testmeta.c $(ttsafe_SOURCES) \ - unlink.c vfd.c + istore.c lheap.c links.c mount.c mtime.c ntypes.c objcopy.c \ + ohdr.c pool.c reserved.c set_extent.c sheap.c space_overflow.c \ + stab.c stream_test.c $(testhdf5_SOURCES) testmeta.c \ + $(ttsafe_SOURCES) unlink.c vfd.c DIST_SOURCES = $(libh5test_la_SOURCES) b+tree.c big.c bittests.c \ blocktrack.c btree2.c cache.c cmpd_dset.c dangle.c dsets.c \ dt_arith.c dtransform.c dtypes.c enum.c err_compat.c \ @@ -343,10 +343,10 @@ DIST_SOURCES = $(libh5test_la_SOURCES) b+tree.c big.c bittests.c \ gen_deflate.c gen_filters.c gen_new_array.c gen_new_fill.c \ gen_new_group.c gen_new_mtime.c gen_new_super.c \ gen_noencoder.c gen_nullspace.c getname.c gheap.c hyperslab.c \ - istore.c lheap.c links.c mount.c mtime.c ntypes.c objcopy.c ohdr.c \ - pool.c reserved.c set_extent.c sheap.c space_overflow.c stab.c \ - stream_test.c $(testhdf5_SOURCES) testmeta.c $(ttsafe_SOURCES) \ - unlink.c vfd.c + istore.c lheap.c links.c mount.c mtime.c ntypes.c objcopy.c \ + ohdr.c pool.c reserved.c set_extent.c sheap.c space_overflow.c \ + stab.c stream_test.c $(testhdf5_SOURCES) testmeta.c \ + $(ttsafe_SOURCES) unlink.c vfd.c ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) @@ -604,7 +604,8 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog cmpd_dset.h5 \ new_move_[ab].h5 ntypes.h5 dangle.h5 error_test.h5 \ err_compat.h5 dtransform.h5 test_filters.h5 get_file_name.h5 \ tstint[1-2].h5 unlink_chunked.h5 btree2.h5 blocktrack.h5 \ - sheap.h5 b+tree.h5 + sheap.h5 b+tree.h5 objcopy_src.h5 objcopy_dst.h5 \ + objcopy_ext.dat INCLUDES = -I$(top_srcdir)/src -I$(top_builddir)/src # Test script for error_test and err_compat |