From 551b8d3f1724783619a4bc2d4084a8a8fb9714f6 Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Wed, 12 Nov 2014 04:12:13 +0000 Subject: [PATCH] instead of directly using 'ar' program we are using the AR macro now (which defaults to 'ar' if you do not define it) git-svn-id: svn://ttmath.org/publicrep/tito/trunk@992 e52654a7-88a9-db11-a3e9-0013d4bc506e --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 0bb3ca7..cb4f7f9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -5,7 +5,7 @@ libname=tito.a all: $(libname) $(libname): $(o) - ar rcs $(libname) $(o) + $(AR) rcs $(libname) $(o) %.o: %.cpp