Update of /cvsroot/mockpp/mockpp/mockpp/tests
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23734/mockpp/tests
Modified Files:
Makefile.am
Log Message:
only check headers
Index: Makefile.am
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Makefile.am,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -d -r1.86 -r1.87
--- Makefile.am 15 Oct 2005 15:13:26 -0000 1.86
+++ Makefile.am 16 Oct 2005 12:28:11 -0000 1.87
@@ -141,14 +141,16 @@
###########################################################################
check_inst.cpp:
+ - rm $(top_srcdir)/mockpp/chainable-template.h
+ - rm $(top_srcdir)/mockpp/visitable-template.h
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
+ 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)
- echo "*/" >>check_inst.cpp
+ echo "// */" >>check_inst.cpp
echo "int main()" >>check_inst.cpp
echo "{" >>check_inst.cpp
echo " return 0;" >>check_inst.cpp
|