#!/bin/bash
## ---------------------------------------------------------------------
##
-## Copyright (C) 2015, 2016 by the deal.II authors
+## Copyright (C) 2015 - 2018 by the deal.II authors
##
## This file is part of the deal.II library.
##
fi
-files="`echo include/deal.II/*/*h \
- source/*/*cc \
- source/*/*in \
- examples/*/*.cc`
- `find cmake/ | egrep '\.(cmake|in|cc)$'`
- `find . -name CMakeLists.txt`
- `find tests/ | egrep '\.(h|cc)$'`
- `find doc/ | egrep '\.html$'`
- "
+files="
+ $(echo contrib/*/*.{py,sh} \
+ contrib/python-bindings/CMakeLists.txt \
+ contrib/python-bindings/*/*.{h,cc,py} \
+ contrib/utilities/{update-copyright,indent} \
+ doc/doxygen/*/*.{h,h.in} \
+ doc/doxygen/scripts/{create_anchors,filter,intro2toc,program*,*.pl} \
+ doc/screen.css \
+ examples/*/*.cc \
+ include/deal.II/*/*h \
+ source/*/*.{cc,in})
+ $(find cmake/ | egrep '\.(cmake|in|cc)$')
+ $(find . -name CMakeLists.txt)
+ $(find tests/ | egrep '\.(h|cc)$')
+ $(find doc/ | egrep '\.html$')
+"
+
for i in $files ; do
# get the last year this file was modified from the git log.