summaryrefslogtreecommitdiff
path: root/lib/make/make.thornlib
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-01-19 16:22:52 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-01-19 16:22:52 +0000
commit8fd4bfbeb0f5ec6604daf0f6b030f37f58b4b7ac (patch)
tree2067e0500b470536289877eb619c63456d5cfce3 /lib/make/make.thornlib
parentf6fb4c3c7988e96c888509d861b3199a71256291 (diff)
Changed name of main library to libCactus.a .
Unified rules for making libraries. Slight cosmetic change to make.thornlib - now states whether it is creating or whether it is updating the library, rather than just saying 'Creating or Updating' . Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@76 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/make.thornlib')
-rw-r--r--lib/make/make.thornlib2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/make/make.thornlib b/lib/make/make.thornlib
index 373a3dac..f01905f4 100644
--- a/lib/make/make.thornlib
+++ b/lib/make/make.thornlib
@@ -44,7 +44,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 Creating or updating $(NAME)
+ if [ -r $(NAME) ] ; then echo Updating $(NAME) ; else echo Creating $(NAME) ; fi
$(AR) $(ARFLAGS) $@ $(OBJS)
# $(RANLIB) $@