[Libsysio-commit] HEAD: libsysio/tests Makefile.am
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2005-02-03 20:37:14
|
Update of /cvsroot/libsysio/libsysio/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23774 Modified Files: Makefile.am Log Message: All the per test LDADD directives caused the libraries to be specified twice during the build. This is not good if they contain CTOR directives as they go off twice, usually are initializers and, so, init twice. Index: Makefile.am =================================================================== RCS file: /cvsroot/libsysio/libsysio/tests/Makefile.am,v retrieving revision 1.22 retrieving revision 1.23 diff -u -w -b -B -p -r1.22 -r1.23 --- Makefile.am 24 Oct 2004 20:53:46 -0000 1.22 +++ Makefile.am 3 Feb 2005 20:37:05 -0000 1.23 @@ -50,57 +50,46 @@ LIBS=$(LIBBUILD_DIR)/libsysio.a test_copy_SOURCES=test_copy.c $(CMNSRC) test_copy_CFLAGS=$(CFL) -test_copy_LDADD=$(LIBS) test_copy_DEPENDENCIES=$(LIBS) test_stats_SOURCES=test_stats.c $(CMNSRC) test_stats_CFLAGS=$(CFL) -test_stats_LDADD=$(LIBS) test_stats_DEPENDENCIES=$(LIBS) test_path_SOURCES=test_path.c $(CMNSRC) test_path_CFLAGS=$(CFL) -test_path_LDADD=$(LIBS) test_path_DEPENDENCIES=$(LIBS) test_list_SOURCES=test_list.c $(CMNSRC) test_list_CFLAGS=$(CFL) -test_list_LDADD=$(LIBS) test_list_DEPENDENCIES=$(LIBS) test_getcwd_SOURCES=test_getcwd.c $(CMNSRC) test_getcwd_CFLAGS=$(CFL) -test_getcwd_LDADD=$(LIBS) test_getcwd_DEPENDENCIES=$(LIBS) test_link_SOURCES=test_link.c $(CMNSRC) test_link_CFLAGS=$(CFL) -test_link_LDADD=$(LIBS) test_link_DEPENDENCIES=$(LIBS) test_unlink_SOURCES=test_unlink.c $(CMNSRC) test_unlink_CFLAGS=$(CFL) -test_unlink_LDADD=$(LIBS) test_unlink_DEPENDENCIES=$(LIBS) test_rename_SOURCES=test_rename.c $(CMNSRC) test_rename_CFLAGS=$(CFL) -test_rename_LDADD=$(LIBS) test_rename_DEPENDENCIES=$(LIBS) test_regions_SOURCES=test_regions.c $(CMNSRC) test_regions_CFLAGS=$(CFL) -test_regions_LDADD=$(LIBS) test_regions_DEPENDENCIES=$(LIBS) test_driver_SOURCES=test_driver.c sysio_tests.c sysio_stubs.c help.c $(CMNSRC) test_driver_CFLAGS=$(CFL) -test_driver_LDADD=$(LIBS) test_driver_DEPENDENCIES=$(LIBS) test_stddir_SOURCES=test_stddir.c $(CMNSRC) test_stddir_CFLAGS=$(CFL) -test_stddir_LDADD=$(LIBS) test_stddir_DEPENDENCIES=$(LIBS) drv_data.c: $(CONFIG_DEPENDENCIES) $(top_srcdir)/tests/gendrvdata.sh |