# Automatic generation of dependencies
############################################################
-all-cc-files = $(wildcard *.cc)
+all-cc-files = $(shell echo *.cc)
Make.depend: $(all-cc-files)
@echo =====Dependecies=== Make.depend
# get lists of files we need
-cc-files = $(wildcard *.cc)
-lib-h-files = $(wildcard ../../deal_II/include/*/*.h) \
- $(wildcard ../../lac/include/*/*.h) \
- $(wildcard ../../base/include/*/*.h)
+cc-files = $(shell echo *.cc)
+lib-h-files = $(shell echo ../../deal_II/include/*/*.h) \
+ $(shell echo ../../lac/include/*/*.h) \
+ $(shell echo ../../base/include/*/*.h)
executables = $(cc-files:.cc=.testcase)
output-files= $(cc-files:.cc=.output)
# Automatic generation of dependencies
############################################################
-all-cc-files = $(wildcard *.cc)
+all-cc-files = $(shell echo *.cc)
Make.depend: $(all-cc-files)
@echo =====Dependencies=== Make.depend
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