summaryrefslogtreecommitdiff
path: root/lib/make/make.thornlib
diff options
context:
space:
mode:
Diffstat (limited to 'lib/make/make.thornlib')
-rw-r--r--lib/make/make.thornlib5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/make/make.thornlib b/lib/make/make.thornlib
index d0ae1667..79d427ca 100644
--- a/lib/make/make.thornlib
+++ b/lib/make/make.thornlib
@@ -11,6 +11,10 @@
# Silence all but designated output
#.SILENT:
+# Dividers to make the screen output slightly nicer
+DIVEL = __________________
+DIVIDER = $(DIVEL)$(DIVEL)$(DIVEL)$(DIVEL)
+
# Include the main make definitions for this configuration
include $(CONFIG)/make.config.defn
@@ -48,6 +52,7 @@ SRCS = $(CCTK_SRCS)
OBJS = $(patsubst %,%.o,$(basename $(SRCS)))
$(NAME): $(addsuffix .check, $(SUBDIRS)) $(OBJS) $(SRCDIR)/make.code.defn $(foreach DIR,$(SUBDIRS), $(SRCDIR)/$(DIR)/make.code.defn)
+ @echo $(DIVIDER)
if [ -r $(NAME) ] ; then echo Updating $(NAME) ; else echo Creating $(NAME) ; fi
$(AR) $(ARFLAGS) $@ $(OBJS)
# $(RANLIB) $@