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
This commit is contained in:
Tomasz Sowa 2014-11-12 04:12:13 +00:00
parent 29e36a1571
commit 551b8d3f17
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ libname=tito.a
all: $(libname)
$(libname): $(o)
ar rcs $(libname) $(o)
$(AR) rcs $(libname) $(o)
%.o: %.cpp