summaryrefslogtreecommitdiff
path: root/doc/ThornGuide
diff options
context:
space:
mode:
authorknarf <knarf@17b73243-c579-4c4c-a9d2-2d5706c11dac>2011-10-04 13:31:45 +0000
committerknarf <knarf@17b73243-c579-4c4c-a9d2-2d5706c11dac>2011-10-04 13:31:45 +0000
commit87f89d0296627a4d4e14f4935523f92b66c3af98 (patch)
treebe67f963e12591f8883a80956a69da791442cd02 /doc/ThornGuide
parenteebd27eee512f591ce6c7c640c614290604fe464 (diff)
document VERBOSE=yes (and that SILENT=no is now depreciated)
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4741 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'doc/ThornGuide')
-rw-r--r--doc/ThornGuide/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/ThornGuide/Makefile b/doc/ThornGuide/Makefile
index aa76bcc6..f827a65c 100644
--- a/doc/ThornGuide/Makefile
+++ b/doc/ThornGuide/Makefile
@@ -4,8 +4,12 @@
# make THORNS="CactusWave/IDScalarWave,CactusWave/WaveToyF77" ARRANGEMENTS="CactusBase,CactusPUGHIO"
+# backwards compatibility for VERBOSE=yes (SILENT=no)
+ifeq ($(shell echo $(strip $(SILENT)) | tr '[:upper:]' '[:lower:]'),no)
+VERBOSE = yes
+endif
# Make quietly unless told not to
-ifneq ($(strip $(SILENT)),no)
+ifneq ($(shell echo $(strip $(VERBOSE)) | tr '[:upper:]' '[:lower:]'),yes)
.SILENT:
endif