summaryrefslogtreecommitdiff
path: root/doc/ThornGuide
diff options
context:
space:
mode:
authorikelley <ikelley@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-20 08:08:24 +0000
committerikelley <ikelley@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-20 08:08:24 +0000
commit4de427c73de08804dfc7106b080b42ae6fea5606 (patch)
tree5732c3feb36996868248f4882b197178bc91eebb /doc/ThornGuide
parentdb9fb2aa911a652bbae178d8b52ed189f176a710 (diff)
rolling back makefile to non-dev version which does not try to do Interface parsing.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2733 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'doc/ThornGuide')
-rw-r--r--doc/ThornGuide/Makefile37
1 files changed, 22 insertions, 15 deletions
diff --git a/doc/ThornGuide/Makefile b/doc/ThornGuide/Makefile
index a5339576..103f3406 100644
--- a/doc/ThornGuide/Makefile
+++ b/doc/ThornGuide/Makefile
@@ -35,28 +35,33 @@ MASTER_FILE=ThornGuide
default : $(MASTER_FILE).ps
$(MASTER_FILE).ps: $(MASTER_FILE).dvi
- @echo " Running dvips on $<"
+ @echo ""
+ @echo "Running dvips on $<"
dvips -f $< 2> DVIPS_MESSAGES | $(CCTK_HOME)/lib/sbin/FixPageNumbersInPostscript.pl > $@
if test -e "$@"; then \
- echo " $@ created."; \
+ echo " $@ created."; \
else \
echo "Cannot find $@, an error must have occured."; \
fi ;
+ echo "Done."
$(MASTER_FILE).dvi: $(MASTER_FILE).tex
- @echo " Latexing $<"
+ @echo ""
+ @echo "Latexing $<"
latex -interaction=nonstopmode $< > LATEX_MSGS 2>&1; \
latex -interaction=nonstopmode $< >> LATEX_MSGS 2>&1; \
latex -interaction=nonstopmode $< >> LATEX_MSGS 2>&1; \
latex -interaction=nonstopmode $< >> LATEX_MSGS 2>&1; \
if test -e "$@"; then \
- echo " $@ created."; \
+ echo " $@ created."; \
else \
echo "Cannot find $@, an error must have occured."; \
fi ;
-
+ echo "Done."
+
$(MASTER_FILE).pdf: $(MASTER_FILE).tex
- @echo " Running pdflatex on $<"
+ @echo ""
+ @echo "Running pdflatex on $<"
pdflatex -interaction=nonstopmode $< > PDFLATEX_MSGS 2>&1; \
pdflatex -interaction=nonstopmode $< >> PDFLATEX_MSGS 2>&1; \
@@ -64,29 +69,31 @@ $(MASTER_FILE).pdf: $(MASTER_FILE).tex
pdflatex -interaction=nonstopmode $< >> PDFLATEX_MSGS 2>&1
if test -e "$@"; then \
- echo " $@ created."; \
+ echo " $@ created."; \
else \
echo "Cannot find $@, an error must have occured."; \
fi ;
+ echo "Done."
$(MASTER_FILE).tex: $(foreach thorn, $(THORNS), $(thorn)/param.ccl $(thorn)/interface.ccl $(thorn)/schedule.ccl)
- @echo " Creating thorn documentation ThornGuide.tex"
- @echo " Processing ..."
- @echo " param.ccl ..."
+ @echo "Creating thorn documentation ThornGuide.tex"
+ @echo " Processing ..."
+ @echo " param.ccl ..."
$(PERL) -s $(CCTK_HOME)/lib/sbin/ParamLatex.pl -cctk_home=$(CCTK_HOME) -directory=$(ARRANGEMENTS_DIR) -thornlist=$(THORNLIST) -outdir=./ -section -grouping=bythorn -sort=scope > PARAMLATEX_MSGS 2>&1
- @echo " interface.ccl ..."
- $(PERL) -s $(CCTK_HOME)/lib/sbin/InterLatex.pl -cctk_home=$(CCTK_HOME) -directory=$(ARRANGEMENTS_DIR) -thornlist=$(THORNLIST) -outdir=./ -section -grouping=bythorn > INTERLATEX_MSGS 2>&1
- @echo " schedule.ccl ..."
+ @echo " interface.ccl .... (currently unavailable)"
+ @echo " schedule.ccl ..."
$(PERL) -s $(CCTK_HOME)/lib/sbin/SchedLatex.pl -cctk_home=$(CCTK_HOME) -directory=$(ARRANGEMENTS_DIR) -thornlist=$(THORNLIST) -outdir=./ -section > SCHEDLATEX_MSGS 2>&1
- @echo " Creating $@ ..."
+ @echo " Creating $@ ..."
$(PERL) -s $(CCTK_HOME)/lib/sbin/ThornGuide.pl -cctk_home=$(CCTK_HOME) -directory=$(ARRANGEMENTS_DIR) -thornlist=$(THORNLIST) -outdir=./ > THORNGUIDE_MSGS 2>&1
+
if test -e $(IMAGE_FILE) && test ! -e "bincactus.eps"; then \
cp $(IMAGE_FILE) bincactus.eps; \
fi ;
+ echo "Done."
make.thornlist: $(THORNLIST)
THORNS=`$(PERL) -s $(CCTK_HOME)/lib/sbin/ThornList.pl -arrangements_dir=$(ARRANGEMENTS_DIR) -thornlist=$(THORNLIST)`
allthorns.th:
- @echo " Creating $@ ..."
+ @echo "Creating $@ ..."
$(PERL) -s $(CCTK_HOME)/lib/sbin/ThornList.pl -arrangements_dir=$(ARRANGEMENTS_DIR) > $@