summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2007-01-11 03:13:43 +0000
committerMatt Johnston <matt@ucc.asn.au>2007-01-11 03:13:43 +0000
commitca52f070aecf91e75f6ae6c87d4ae1a2189ccb14 (patch)
tree39a350d7c1c1eeb87c9f7c72d5d2ffc5d3a7b0a4
parent9e9858b81c04afda127e31032e7d24aed9e33e05 (diff)
%s/ranlib/$(RANLIB)/
--HG-- branch : libtommath-dropbear extra : convert_revision : 2af95f00ebd5bb7a28b3817db1218442c935388e
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 5f27eef..21dda19 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -87,7 +87,7 @@ bn_mp_to_signed_bin_n.o bn_mp_to_unsigned_bin_n.o
$(LIBNAME): $(OBJECTS)
$(AR) $(ARFLAGS) $@ $(OBJECTS)
- ranlib $@
+ $(RANLIB) $@
#make a profiled library (takes a while!!!)
#
@@ -110,7 +110,7 @@ profiled_single:
rm -f *.o ltmtest
$(CC) $(CFLAGS) -fbranch-probabilities -DTESTING -c mpi.c -o mpi.o
$(AR) $(ARFLAGS) $(LIBNAME) mpi.o
- ranlib $(LIBNAME)
+ $(RANLIB) $(LIBNAME)
install: $(LIBNAME)
install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH)