From: bangerth Date: Tue, 2 Nov 2010 12:54:48 +0000 (+0000) Subject: Adjust to new directory structure. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d54d6f2c61f0077f9b873c8ef58c6876781f0c7;p=dealii-svn.git Adjust to new directory structure. git-svn-id: https://svn.dealii.org/trunk@22585 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/all-headers/Makefile b/tests/all-headers/Makefile index 95ecef8287..f2b672b5ac 100644 --- a/tests/all-headers/Makefile +++ b/tests/all-headers/Makefile @@ -1,8 +1,8 @@ # collect all header files, and for each try to do the following: # generate a file tmp.cc that contains nothing but "#include " -# with this particular header file. then try to compile it. this +# with this particular header file. then try to compile it. this # sometimes fails since this header does not include all other headers -# it actually needs. we don't usually see this since we may be +# it actually needs. we don't usually see this since we may be # including these missing headers into our files before, so that nobody # notices the problem. expose it this way. @@ -43,7 +43,7 @@ endif default: all # collect all headers -HEADERS = $(shell cd $D; echo */include/*/*.h) +HEADERS = $(shell cd $D; echo include/deal.II/*/*.h) TESTS = $(shell for i in $(HEADERS) ; do echo test-$$i | $(PERL) -pi -e 's/.h$$/.OK/g; s/\//-/g;' ; done) ID = `id -un`"@"`hostname`