]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Fix some of the problems introduced with gmake 3.77.
authorcvs <cvs@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 14 Oct 1999 17:23:36 +0000 (17:23 +0000)
committercvs <cvs@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 14 Oct 1999 17:23:36 +0000 (17:23 +0000)
git-svn-id: https://svn.dealii.org/trunk@1770 0785d39b-7218-0410-832d-ea1e28bc413d

14 files changed:
deal.II/deal.II/Attic/examples/convergence/Makefile
deal.II/deal.II/Attic/examples/dof/Makefile
deal.II/deal.II/Attic/examples/error-estimation/Makefile
deal.II/deal.II/Attic/examples/grid/Makefile
deal.II/deal.II/Attic/examples/multigrid/Makefile
deal.II/deal.II/Attic/examples/nonlinear/fixed-point-iteration/Makefile
deal.II/deal.II/Attic/examples/poisson/Makefile
tests/big-tests/convergence/Makefile
tests/big-tests/dof/Makefile
tests/big-tests/error-estimation/Makefile
tests/big-tests/grid/Makefile
tests/big-tests/multigrid/Makefile
tests/big-tests/nonlinear/fixed-point-iteration/Makefile
tests/big-tests/poisson/Makefile

index ea06a20f1eee2340c203eff28d2bb3013bd1d0c3..937c66466908a79916353106d26896e0f2a4dedf 100644 (file)
@@ -42,11 +42,11 @@ D = ../../..
 include $D/common/Make.global_options
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   -ldeal_II_2d  -llac -lbase
index aaa73093698ab8eea09a61941907ed92a5f1ed8c..46b8df97c31a27c2fc84ec07fa44973a704a7268 100644 (file)
@@ -43,11 +43,11 @@ include $D/common/Make.global_options
 
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   ../../lib/libdeal_II_2d.a   ../../lib/libdeal_II_3d.a   ../../../lac/lib/liblac.a   ../../../base/lib/libbase.a
index 28a3caf50789d6182b62648228d87d8dd9398258..180aa8b7a337bc06a8c688b7d46a26f414db6261 100644 (file)
@@ -48,11 +48,11 @@ include $D/common/Make.global_options
 
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   -ldeal_II_2d  -llac -lbase
index feb050c656b822a9ceadd5958dc6d04423a482d5..1be0febb079945075938043b72a81c79714c5c6e 100644 (file)
@@ -43,11 +43,11 @@ include $D/common/Make.global_options
 
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   ../../lib/libdeal_II_2d.g.a ../../lib/libdeal_II_3d.a   ../../../lac/lib/liblac.a   ../../../base/lib/libbase.a
index 478f866bf138870f73117ab22b0cc410923039d2..63557adbdcbb1aef306f76e132dbdcd160e8c12b 100644 (file)
@@ -43,11 +43,11 @@ include $D/common/Make.global_options
 
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   -ldeal_II_2d  -llac -lbase
index 1572542e202f721afa56078c522bef8db73291a7..a3e05a8b1a368980941b44d8e4efa10b5500661b 100644 (file)
@@ -44,11 +44,11 @@ include ../../../Make.global_options
 
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   -ldeal_II_2d   -llac -lbase
index bd62f51ff2a607d73c2544461c75cbbba083c275..65a6d6562454450b52b4964d8398a712cabe21a7 100644 (file)
@@ -44,11 +44,11 @@ include $D/common/Make.global_options
 
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   -ldeal_II_2d   -llac -lbase
index ea06a20f1eee2340c203eff28d2bb3013bd1d0c3..937c66466908a79916353106d26896e0f2a4dedf 100644 (file)
@@ -42,11 +42,11 @@ D = ../../..
 include $D/common/Make.global_options
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   -ldeal_II_2d  -llac -lbase
index aaa73093698ab8eea09a61941907ed92a5f1ed8c..46b8df97c31a27c2fc84ec07fa44973a704a7268 100644 (file)
@@ -43,11 +43,11 @@ include $D/common/Make.global_options
 
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   ../../lib/libdeal_II_2d.a   ../../lib/libdeal_II_3d.a   ../../../lac/lib/liblac.a   ../../../base/lib/libbase.a
index 28a3caf50789d6182b62648228d87d8dd9398258..180aa8b7a337bc06a8c688b7d46a26f414db6261 100644 (file)
@@ -48,11 +48,11 @@ include $D/common/Make.global_options
 
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   -ldeal_II_2d  -llac -lbase
index feb050c656b822a9ceadd5958dc6d04423a482d5..1be0febb079945075938043b72a81c79714c5c6e 100644 (file)
@@ -43,11 +43,11 @@ include $D/common/Make.global_options
 
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   ../../lib/libdeal_II_2d.g.a ../../lib/libdeal_II_3d.a   ../../../lac/lib/liblac.a   ../../../base/lib/libbase.a
index 478f866bf138870f73117ab22b0cc410923039d2..63557adbdcbb1aef306f76e132dbdcd160e8c12b 100644 (file)
@@ -43,11 +43,11 @@ include $D/common/Make.global_options
 
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   -ldeal_II_2d  -llac -lbase
index 1572542e202f721afa56078c522bef8db73291a7..a3e05a8b1a368980941b44d8e4efa10b5500661b 100644 (file)
@@ -44,11 +44,11 @@ include ../../../Make.global_options
 
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   -ldeal_II_2d   -llac -lbase
index bd62f51ff2a607d73c2544461c75cbbba083c275..65a6d6562454450b52b4964d8398a712cabe21a7 100644 (file)
@@ -44,11 +44,11 @@ include $D/common/Make.global_options
 
 
 # get lists of files we need
-cc-files    = $(wildcard *.cc)
+cc-files    = $(filter-out *%, $(shell echo *.cc))
 o-files     = $(cc-files:.cc=.o)
 go-files    = $(cc-files:.cc=.go)
-h-files     = $(wildcard *.h)
-lib-h-files = $(wildcard ../../include/*/*.h)
+h-files     = $(filter-out *%, $(shell echo *.h))
+lib-h-files = $(filter-out *%, $(shell echo ../../include/*/*.h))
 
 # list of libraries needed to link with
 libs     = ./Obj.a   -ldeal_II_2d   -llac -lbase

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.