From: bangerth Date: Thu, 27 Sep 2012 16:52:16 +0000 (+0000) Subject: Remove a script that generates a TODO file. doxygen does this in a more elegant way... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2e13d19eb9e9d4bdd605a050ff4b8a50036a17e;p=dealii-svn.git Remove a script that generates a TODO file. doxygen does this in a more elegant way, as does Eclipse. It's also easy to do with a grep command. git-svn-id: https://svn.dealii.org/trunk@26789 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/Makefile b/deal.II/Makefile index b321dbe13f..b42a02a4a6 100644 --- a/deal.II/Makefile +++ b/deal.II/Makefile @@ -60,11 +60,6 @@ online-doc doc: @echo @echo -TODO: - @egrep -i '// *todo' include/deal.II/*/*.h source/*/*.cc \ - | perl common/scripts/make_todo.pl > $@ - - TAGS: @cd common ; etags --language=c++ \ ../include/deal.II/*/*.h ../source/*/*.cc \ diff --git a/deal.II/common/scripts/make_todo.pl.in b/deal.II/common/scripts/make_todo.pl.in deleted file mode 100644 index a5b38049cb..0000000000 --- a/deal.II/common/scripts/make_todo.pl.in +++ /dev/null @@ -1,9 +0,0 @@ -#!@PERL@ - -while(<>) -{ - s#@prefix@/?#\n#; - s#(.*)(TODO:?)(\[[^\]]+\])?#\3 \1\2\3#i; - s#\s*//\s*TODO:?\s*(\[[^\]]+\])?:?\s*#\n\1 #i; - print; -}