From c587337eac53daaecaf1270e182aab9943fb174c Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 29 Feb 2000 12:56:29 +0000 Subject: [PATCH] Adapt to new pathes. git-svn-id: https://svn.dealii.org/trunk@2506 0785d39b-7218-0410-832d-ea1e28bc413d --- .../doc/tutorial/chapter-2.step-by-step/Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/deal.II/doc/tutorial/chapter-2.step-by-step/Makefile b/deal.II/doc/tutorial/chapter-2.step-by-step/Makefile index 7e8cb7f463..a491d47763 100644 --- a/deal.II/doc/tutorial/chapter-2.step-by-step/Makefile +++ b/deal.II/doc/tutorial/chapter-2.step-by-step/Makefile @@ -4,7 +4,7 @@ # include paths and global variables include ../../../common/Make.global_options -example-directories = $(shell echo $D/deal.II/examples/step-by-step/step-*) +example-directories = $(shell echo $D/examples/step-*) example-names = $(notdir $(example-directories)) example-htmls = $(addsuffix .html,$(example-names)) example-sgmls = $(addsuffix .sgml,$(example-names)) @@ -16,13 +16,13 @@ $(example-htmls): @echo ================== Assembling $@ @cat head.html > $@ @cat $(@:.html=.data/intro.html) >> $@ - @cat $D/deal.II/examples/step-by-step/$(@:.html=)/$(@:.html=.cc) \ + cat $D/examples/$(@:.html=)/$(@:.html=.cc) \ | $(PERL) program2html \ >> $@ @cat $(@:.html=.data/results.html) >> $@ - @cat $D/deal.II/examples/step-by-step/$(@:.html=)/$(@:.html=.cc) \ + @cat $D/examples/$(@:.html=)/$(@:.html=.cc) \ | $(PERL) program2plain \ - | $(PERL) -e '$$path="$D/deal.II/examples/step-by-step/$(@:.html=)/$(@:.html=.cc)"; \ + | $(PERL) -e '$$path="$D/examples/$(@:.html=)/$(@:.html=.cc)"; \ $$path =~ s!/! /!g; \ while (<>) { s!PROGRAMPATH!$$path!g; print; };' \ >> $@ @@ -34,15 +34,15 @@ $(example-sgmls): @echo ================== Assembling $@ @cat $(@:.sgml=.data/intro.html) >> $@ @echo "" >> $@ - @cat $D/deal.II/examples/step-by-step/$(@:.sgml=)/$(@:.sgml=.cc) \ + @cat $D/examples/$(@:.sgml=)/$(@:.sgml=.cc) \ | $(PERL) program2html \ >> $@ @echo "" >> $@ @cat $(@:.sgml=.data/results.html) >> $@ @echo "" >> $@ - @cat $D/deal.II/examples/step-by-step/$(@:.sgml=)/$(@:.sgml=.cc) \ + @cat $D/examples/$(@:.sgml=)/$(@:.sgml=.cc) \ | $(PERL) program2plain \ - | $(PERL) -e '$$path="$D/deal.II/examples/step-by-step/$(@:.sgml=)/$(@:.sgml=.cc)"; \ + | $(PERL) -e '$$path="$D/examples/$(@:.sgml=)/$(@:.sgml=.cc)"; \ $$path =~ s!/! /!g; \ while (<>) { s!PROGRAMPATH!$$path!g; print; };' \ >> $@ -- 2.39.5