From 9edcc559e5887e6460b6917076cb27334c75ac82 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 27 Sep 2012 16:52:16 +0000 Subject: [PATCH] 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 --- deal.II/Makefile | 5 ----- deal.II/common/scripts/make_todo.pl.in | 9 --------- 2 files changed, 14 deletions(-) delete mode 100644 deal.II/common/scripts/make_todo.pl.in 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; -} -- 2.39.5