]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Fix a problem with gmake 3.77 not understanding a command.
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 3 Sep 1999 09:34:14 +0000 (09:34 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 3 Sep 1999 09:34:14 +0000 (09:34 +0000)
git-svn-id: https://svn.dealii.org/trunk@1720 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/base/source/Makefile
deal.II/deal.II/source/Makefile
deal.II/doc/auto/Makefile
deal.II/lac/source/Makefile

index 71d8e1b1e37363792ddd3431d134f27588cc552e..01a6ed8b37bbba1e1d40396328f0f36fca4f475b 100644 (file)
@@ -6,7 +6,7 @@ D=../..
 # create lists of file names. note that we need several output
 # files for data_out_base.cc, which is why we use the several
 # intermediate o-files-base* rules
-cc-files     = $(wildcard *.cc)
+cc-files     = $(shell echo *.cc)
 o-files-base1= $(addprefix ../lib/o/, $(cc-files:.cc=.o))
 o-files-base2= $(filter-out %data_out_base.o, $(o-files-base1)) \
                $(patsubst %.o,%_1d.o,$(filter %data_out_base.o, $(o-files-base1))) \
@@ -15,7 +15,7 @@ o-files-base2= $(filter-out %data_out_base.o, $(o-files-base1)) \
 o-files-base3= $(sort $(o-files-base2))
 o-files      = $(o-files-base3)
 go-files     = $(patsubst ../lib/o/%,../lib/go/%,$(o-files-base3:.o=.go))
-h-files      = $(wildcard ../include/*/*.h)
+h-files      = $(shell echo ../include/*/*.h)
 
 forward-declarations = $D/base/include/base/forward-declarations.h
 
index 98ef5a8a193a950252d7796ccafeed96d65f051b..0ef33ef457574897157c40b15a92cfb6b8839f4b 100644 (file)
@@ -12,8 +12,8 @@
 
 D=../..
 
-cc-files = $(wildcard */*.cc)
-h-files  = $(wildcard ../include/*/*.h)
+cc-files = $(shell echo */*.cc)
+h-files  = $(shell echo ../include/*/*.h)
 
 forward-declarations = $D/deal.II/include/basic/forward-declarations.h
 
index 02684a4a7d4d822c2b80bb29fc2972b7aa449c9d..d15dc5fad5e24a7080def7cc7e7d9dbba2294c86 100644 (file)
@@ -7,16 +7,17 @@
 #
 # specify which are the include files that a specific documentation libary
 # depends upon
-kdoc.base     = $(wildcard ../../base/include/base/*.h)
-kdoc.lac      = $(wildcard ../../lac/include/lac/*.h)
-kdoc.basic    = $(wildcard ../../deal.II/include/basic/*.h)
-kdoc.grid     = $(wildcard ../../deal.II/include/grid/tria*.h)\
-                $(wildcard ../../deal.II/include/grid/grid*.h)\
-                ../../deal.II/include/grid/geometry_info.h
-kdoc.dof      = $(wildcard ../../deal.II/include/grid/dof*.h) \
-                $(wildcard ../../deal.II/include/grid/mg_*.h) \
-                $(wildcard ../../deal.II/include/fe/*.h)
-kdoc.numerics = $(wildcard ../../deal.II/include/numerics/*.h)
+kdoc.base     = $(shell echo ../../base/include/base/*.h)
+kdoc.lac      = $(shell echo ../../lac/include/lac/*.h)
+kdoc.basic    = $(shell echo ../../deal.II/include/basic/*.h)
+kdoc.grid     = $(shell echo ../../deal.II/include/grid/tria*.h)\
+                $(shell echo ../../deal.II/include/grid/grid*.h)\
+                ../../deal.II/include/grid/geometry_info.h \
+                ../../deal.II/include/grid/persistent_tria.h
+kdoc.dof      = $(shell echo ../../deal.II/include/grid/dof*.h) \
+                $(shell echo ../../deal.II/include/grid/mg_*.h) \
+                $(shell echo ../../deal.II/include/fe/*.h)
+kdoc.numerics = $(shell echo ../../deal.II/include/numerics/*.h)
 
 # for latex-output, we join the different libraries of the
 # deal.II library into just one file
@@ -24,8 +25,8 @@ kdoc.dealII = $(kdoc.basic) $(kdoc.grid) $(kdoc.dof) $(kdoc.numerics)
 
 # user projects. the projects should be independant of each other, so
 # we need not take care of cross-dependencies each time 
-kdoc.transport     = $(wildcard ../../projects/transport/trans_dg/*.h)
-kdoc.wave-equation = $(wildcard ../../projects/wave-equation/include/*.h)
+kdoc.transport     = $(shell echo ../../projects/transport/trans_dg/*.h)
+kdoc.wave-equation = $(shell echo ../../projects/wave-equation/include/*.h)
 
 
 # specify the names of the resulting doc libraries
@@ -46,7 +47,8 @@ kdoc.library-files = kdoc/base.kdoc         \
 kdoc.library-files.rerun = $(kdoc.library-files:%.kdoc=%.kdoc.rerun)
 
 
-KDOCFLAGS   = -I../scripts/kdoc ../scripts/kdoc/kdoc -a -p
+#KDOCFLAGS   = -I../scripts/kdoc ../scripts/kdoc/kdoc -a -p
+KDOCFLAGS = /home/people/wolf/tmp/kdoc-a12/bin/kdoc
 ifeq ($(shell uname),SunOS)
 DOCPP = /home/people/wolf/Config/doc++/doc++
 #DOCPP = /home/people/kanschat/bin/doc++
index 32f5ee39ad0102e8ed317c9b591fb1064f48b052..5b9d6b560d9420310b284661224ef0efbfe89cbe 100644 (file)
@@ -2,10 +2,10 @@
 
 D=../..
 
-cc-files = $(wildcard *.cc)
+cc-files = $(shell echo *.cc)
 o-files  = $(addprefix ../lib/o/, $(cc-files:.cc=.o))
 go-files = $(addprefix ../lib/go/, $(cc-files:.cc=.go))
-h-files  = $(wildcard ../include/*/*.h)
+h-files  = $(shell echo ../include/*/*.h)
 
 forward-declarations = $D/lac/include/lac/forward-declarations.h
 

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.