From: wolf Date: Mon, 10 Jun 2002 10:20:25 +0000 (+0000) Subject: Seems as if generation of dependency information was broken. Fix this. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf26d86ec34b57faa078ea98d9cf7d473d7cacd9;p=dealii-svn.git Seems as if generation of dependency information was broken. Fix this. git-svn-id: https://svn.dealii.org/trunk@6039 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-14/Makefile b/deal.II/examples/step-14/Makefile index 2780e00497..e3b56ba572 100644 --- a/deal.II/examples/step-14/Makefile +++ b/deal.II/examples/step-14/Makefile @@ -72,7 +72,7 @@ libs.o = $(lib-deal2-2d.o) \ # file. Note that by default we use the extension .go for object files # compiled in debug mode and .o for object files in optimized mode. ifeq ($(debug-mode),on) - libraries = $(target).go $(libs.g) + libraries = $(target).g.o $(libs.g) flags = $(CXXFLAGS.g) else libraries = $(target).o $(libs.o) @@ -114,10 +114,10 @@ clean: # compiler are usually not of much interest, we suppress the actual # command line using the `at' sign in the first column of the rules # and write the string indicating what we do instead. -%.go : %.cc +./%.g.o : @echo ==============debug========= $( Makefile.dep