[Compbench-devel] CompBenchmarks++/Benchmark Makefile.am, 1.13, 1.14
Brought to you by:
xfred
From: Frederic T. <xf...@us...> - 2006-12-18 17:49:47
|
Update of /cvsroot/compbench/CompBenchmarks++/Benchmark In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv16542 Modified Files: Makefile.am Log Message: Less verbosity while upgrading header files' wrappers. Index: Makefile.am =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Makefile.am,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Makefile.am 13 Dec 2006 19:21:25 -0000 1.13 --- Makefile.am 18 Dec 2006 17:49:43 -0000 1.14 *************** *** 55,80 **** %.libwrapper.h: $(top_srcdir)/Benchmark/benchmarks.list $(CBM_GENLIBWRAPPER) ! @(doit=0; echo "Checking $@"; if test ! -f $(top_srcdir)/Benchmark/$@; then \ doit=1; \ fi; \ $(CBM_GENLIBWRAPPER) $@ $(top_srcdir)/Benchmark > $@.tmp; \ if test $$doit = "1"; then \ ! mv $@.tmp $@ && echo "$@ created."; \ else \ diff $@.tmp $@ > /dev/null; \ ! if test ! $$? == 0; then mv $@.tmp $@ && echo "$@ updated."; fi; \ fi; \ rm $@.tmp 2> /dev/null; exit 0) Benchmark-Selector.liblist.h: $(top_srcdir)/Benchmark/benchmarks.list $(CBM_GENLIBLIST) ! @(doit=0; echo "Checking $@"; if test ! -f $(top_srcdir)/Benchmark/$@; then \ doit=1; \ fi; \ $(CBM_GENLIBLIST) $(top_srcdir)/Benchmark > $@.tmp; \ if test $$doit = "0"; then \ ! mv $@.tmp $@ && echo "List $@ created."; \ else \ diff $@.tmp $@ > /dev/null; \ ! if test ! $$? == 0; then mv $@.tmp $@ && echo "$@ updated."; fi; \ fi; \ rm $@.tmp 2> /dev/null; exit 0) --- 55,84 ---- %.libwrapper.h: $(top_srcdir)/Benchmark/benchmarks.list $(CBM_GENLIBWRAPPER) ! @(doit=0; echo -n "Checking $@ : "; if test ! -f $(top_srcdir)/Benchmark/$@; then \ doit=1; \ fi; \ $(CBM_GENLIBWRAPPER) $@ $(top_srcdir)/Benchmark > $@.tmp; \ if test $$doit = "1"; then \ ! mv $@.tmp $@ && echo "created."; \ else \ diff $@.tmp $@ > /dev/null; \ ! if test ! $$? == 0; then mv $@.tmp $@ && echo "updated."; else \ ! echo "up-to-date."; \ ! fi; \ fi; \ rm $@.tmp 2> /dev/null; exit 0) Benchmark-Selector.liblist.h: $(top_srcdir)/Benchmark/benchmarks.list $(CBM_GENLIBLIST) ! @(doit=0; echo -n "Checking $@ : "; if test ! -f $(top_srcdir)/Benchmark/$@; then \ doit=1; \ fi; \ $(CBM_GENLIBLIST) $(top_srcdir)/Benchmark > $@.tmp; \ if test $$doit = "0"; then \ ! mv $@.tmp $@ && echo "created."; \ else \ diff $@.tmp $@ > /dev/null; \ ! if test ! $$? == 0; then mv $@.tmp $@ && echo "updated."; else \ ! echo "up-to-date."; \ ! fi; \ fi; \ rm $@.tmp 2> /dev/null; exit 0) |