summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-26 21:20:17 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-26 21:20:17 +0000
commitbb7e99aca948ba2e3a79568b27e05d8367578a6a (patch)
tree66f867c8268f83fcf1993dd5bcc66cb8b5f380fc /Makefile
parente883eb6a5c7e122d6c2a1990fdfe854de2780c61 (diff)
Use <config>/doc/build for build directory for the UsersGuide
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2758 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index b81c23e7..6cc8ac2d 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@
#
#
# @enddesc
-# @version $Id: Makefile,v 1.134 2002-04-19 20:37:44 allen Exp $
+# @version $Id: Makefile,v 1.135 2002-04-26 21:20:17 allen Exp $
# @@*/
##################################################################################
@@ -772,7 +772,7 @@ ifneq ($strip($(CONFIGURATIONS)),)
$(addsuffix -testsuite,$(CONFIGURATIONS)):
@echo Running test suite $(@:%-thornlist=%)
- if [ -r $(CONFIGS_DIR)/$(@:%-testsuite=%)/ThornList ] ; then $(PERL) -s lib/sbin/RunTest.pl $(PROMPT) $(CCTK_HOME) $(@:%-testsuite=%) ; fi
+ if [ -r $(CONFIGS_DIR)/$(@:%-testsuite=%)/ThornList ] ; then $(PERL) -s lib/sbin/RunTest.pl $(PROMPT) $(CCTK_HOME) $(@:%-testsuite=%); fi
endif
%-testsuite:
@@ -957,10 +957,11 @@ ifneq ($strip($(CONFIGURATIONS)),)
$(addsuffix -ThornGuide,$(CONFIGURATIONS)):
@echo $(DIVIDER)
@echo Creating ThornGuide for $(@:%-ThornGuide=%)
- if test ! -d $(CONFIGS_DIR)/$(@:%-ThornGuide=%)/build ; then mkdir $(CONFIGS_DIR)/$(@:%-ThornGuide=%)/build; fi
+ if test ! -d $(CONFIGS_DIR)/$(@:%-ThornGuide=%)/doc ; then mkdir $(CONFIGS_DIR)/$(@:%-ThornGuide=%)/doc; fi
+ if test ! -d $(CONFIGS_DIR)/$(@:%-ThornGuide=%)/doc/build ; then mkdir $(CONFIGS_DIR)/$(@:%-ThornGuide=%)/doc/build; fi
if test -r $(CONFIGS_DIR)/$(@:%-ThornGuide=%)/ThornList ; then \
- rm -f $(CONFIGS_DIR)/$(@:%-ThornGuide=%)/build/*.*; \
- cd $(CONFIGS_DIR)/$(@:%-ThornGuide=%)/build; \
+ rm -f $(CONFIGS_DIR)/$(@:%-ThornGuide=%)/doc/build/*.*; \
+ cd $(CONFIGS_DIR)/$(@:%-ThornGuide=%)/doc/build; \
$(MAKE) -f $(CCTK_HOME)/doc/ThornGuide/Makefile THORNLIST=$(CONFIGS_DIR)/$(@:%-ThornGuide=%)/ThornList CCTK_HOME=$(CCTK_HOME) PERL=$(PERL); \
cp ThornGuide.ps $(CCTK_HOME)/ThornGuide-$(@:%-ThornGuide=%).ps; \
fi