summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@mit.edu>2014-07-18 11:28:28 -0400
committerSteven G. Johnson <stevenj@mit.edu>2014-07-18 11:28:28 -0400
commit2e9ef6b7faf1ecd58f14663ace7df065bc3134c5 (patch)
tree547293398fd159c92d6d0ef37b50b5ded69f6d32 /Makefile
parentfc44134d0820331badd29c172b3a4cc4464b556a (diff)
parent6436f9faf911b37da1025772d6bea6347d752ac0 (diff)
downloadlibutf8proc-2e9ef6b7faf1ecd58f14663ace7df065bc3134c5.tar.gz
libutf8proc-2e9ef6b7faf1ecd58f14663ace7df065bc3134c5.tar.bz2
Merge pull request #7 from JuliaLang/cjh/rename-mojibake
Rename libutf8proc -> libmojibake.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 10 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 735dc2f..b9e1c06 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# libutf8proc Makefile
+# libmojibake Makefile
# settings
@@ -11,23 +11,23 @@ cc = $(CC) $(cflags)
all: c-library
-c-library: libutf8proc.a libutf8proc.so
+c-library: libmojibake.a libmojibake.so
clean:
- rm -f utf8proc.o libutf8proc.a libutf8proc.so
+ rm -f utf8proc.o libmojibake.a libmojibake.so
# real targets
utf8proc.o: utf8proc.h utf8proc.c utf8proc_data.c
$(cc) -c -o utf8proc.o utf8proc.c
-libutf8proc.a: utf8proc.o
- rm -f libutf8proc.a
- ar rs libutf8proc.a utf8proc.o
+libmojibake.a: utf8proc.o
+ rm -f libmojibake.a
+ ar rs libmojibake.a utf8proc.o
-libutf8proc.so: utf8proc.o
- $(cc) -shared -o libutf8proc.so utf8proc.o
- chmod a-x libutf8proc.so
+libmojibake.so: utf8proc.o
+ $(cc) -shared -o libmojibake.so utf8proc.o
+ chmod a-x libmojibake.so
-libutf8proc.dylib: utf8proc.o
+libmojibake.dylib: utf8proc.o
$(cc) -dynamiclib -o $@ $^ -install_name $(libdir)/$@