[Mockpp-commits] mockpp/mockpp/tests Makefile.am,1.75,1.76
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-05-07 17:14:12
|
Update of /cvsroot/mockpp/mockpp/mockpp/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8719/mockpp/tests Modified Files: Makefile.am Log Message: added comment Index: Makefile.am =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Makefile.am,v retrieving revision 1.75 retrieving revision 1.76 diff -u -d -r1.75 -r1.76 --- Makefile.am 7 May 2005 17:00:57 -0000 1.75 +++ Makefile.am 7 May 2005 17:14:02 -0000 1.76 @@ -142,7 +142,10 @@ ########################################################################### check_inst.cpp: - echo "/*" >check_inst.cpp + echo -n "" >check_inst.cpp + echo "// Don't edit, this file is automatically generated" >>check_inst.cpp + echo "// to check #include-ing of *all* headers" >>check_inst.cpp + echo "/*" >>check_inst.cpp (N=`pwd`/check_inst.cpp; cd $(srcdir)/../..; find . -name "*.h" \ | grep -v "config" | grep -v "/tests/" | grep -v "/docs/" | grep -v "/examples/" \ | sed -e "s,\./,#include <,g" -e "s/\.h/\.h>/g" >>$$N) @@ -151,5 +154,4 @@ echo "{" >>check_inst.cpp echo " return 0;" >>check_inst.cpp echo "}" >>check_inst.cpp - cp check_inst.cpp $(srcdir) |