diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-08-08 21:35:02 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-08-08 21:35:02 (GMT) |
commit | 32929893cfa80ee31832fe1c24edcd54de301e3e (patch) | |
tree | eb3f4fee3ce8fbff14d1021a82cb7d087189c43a | |
parent | 210ef12816e84c0550f6d92be8429a50b534962f (diff) | |
download | hdf5-32929893cfa80ee31832fe1c24edcd54de301e3e.zip hdf5-32929893cfa80ee31832fe1c24edcd54de301e3e.tar.gz hdf5-32929893cfa80ee31832fe1c24edcd54de301e3e.tar.bz2 |
[svn-r11221] Purpose: Minor bug fix
Description: repart_test.c was mistakenly treated as a tool, instead of a test program.
Solution: Took it out of the list of tools.
Platforms tested: fuss - simpl change.
-rw-r--r-- | tools/misc/Makefile.in | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/tools/misc/Makefile.in b/tools/misc/Makefile.in index 37d54aa..3b27fa3 100644 --- a/tools/misc/Makefile.in +++ b/tools/misc/Makefile.in @@ -31,7 +31,7 @@ # -SOURCES = h5debug.c h5repart.c h5repart_gentest.c pdb2hdf5.c repart_test.c +SOURCES = h5debug.c h5repart.c h5repart_gentest.c pdb2hdf5.c srcdir = @srcdir@ top_srcdir = @top_srcdir@ @@ -60,8 +60,7 @@ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(top_srcdir)/config/commence.am \ $(top_srcdir)/config/conclude.am check_PROGRAMS = $(am__EXEEXT_2) -bin_PROGRAMS = h5debug$(EXEEXT) h5repart$(EXEEXT) $(am__EXEEXT_1) \ - repart_test$(EXEEXT) +bin_PROGRAMS = h5debug$(EXEEXT) h5repart$(EXEEXT) $(am__EXEEXT_1) subdir = tools/misc ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in @@ -94,10 +93,6 @@ pdb2hdf5_SOURCES = pdb2hdf5.c pdb2hdf5_OBJECTS = pdb2hdf5.$(OBJEXT) pdb2hdf5_LDADD = $(LDADD) pdb2hdf5_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) -repart_test_SOURCES = repart_test.c -repart_test_OBJECTS = repart_test.$(OBJEXT) -repart_test_LDADD = $(LDADD) -repart_test_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) binSCRIPT_INSTALL = $(INSTALL_SCRIPT) SCRIPTS = $(bin_SCRIPTS) DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src @@ -111,10 +106,8 @@ LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -SOURCES = h5debug.c h5repart.c h5repart_gentest.c pdb2hdf5.c \ - repart_test.c -DIST_SOURCES = h5debug.c h5repart.c h5repart_gentest.c pdb2hdf5.c \ - repart_test.c +SOURCES = h5debug.c h5repart.c h5repart_gentest.c pdb2hdf5.c +DIST_SOURCES = h5debug.c h5repart.c h5repart_gentest.c pdb2hdf5.c ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) @@ -468,9 +461,6 @@ h5repart_gentest$(EXEEXT): $(h5repart_gentest_OBJECTS) $(h5repart_gentest_DEPEND pdb2hdf5$(EXEEXT): $(pdb2hdf5_OBJECTS) $(pdb2hdf5_DEPENDENCIES) @rm -f pdb2hdf5$(EXEEXT) $(LINK) $(pdb2hdf5_LDFLAGS) $(pdb2hdf5_OBJECTS) $(pdb2hdf5_LDADD) $(LIBS) -repart_test$(EXEEXT): $(repart_test_OBJECTS) $(repart_test_DEPENDENCIES) - @rm -f repart_test$(EXEEXT) - $(LINK) $(repart_test_LDFLAGS) $(repart_test_OBJECTS) $(repart_test_LDADD) $(LIBS) install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @@ -501,7 +491,6 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h5repart.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h5repart_gentest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdb2hdf5.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/repart_test.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ |