summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@mit.edu>2014-07-18 11:35:02 -0400
committerSteven G. Johnson <stevenj@mit.edu>2014-07-18 11:35:02 -0400
commit48645e36e4e07d550cf5f410ec254c7a03937e6a (patch)
tree2c0cc3996c081fac1340038db7807fc5c80aea3b /Makefile
parent2e9ef6b7faf1ecd58f14663ace7df065bc3134c5 (diff)
downloadlibutf8proc-48645e36e4e07d550cf5f410ec254c7a03937e6a.tar.gz
libutf8proc-48645e36e4e07d550cf5f410ec254c7a03937e6a.tar.bz2
replace ar with $(AR) for #4
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b9e1c06..60f0423 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@
cflags = -O2 -std=c99 -pedantic -Wall -fpic $(CFLAGS)
cc = $(CC) $(cflags)
-
+AR = ar
# meta targets
@@ -23,7 +23,7 @@ utf8proc.o: utf8proc.h utf8proc.c utf8proc_data.c
libmojibake.a: utf8proc.o
rm -f libmojibake.a
- ar rs libmojibake.a utf8proc.o
+ $(AR) rs libmojibake.a utf8proc.o
libmojibake.so: utf8proc.o
$(cc) -shared -o libmojibake.so utf8proc.o