summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJiahao Chen <jiahao@mit.edu>2014-07-18 08:52:50 -0400
committerJiahao Chen <jiahao@mit.edu>2014-07-18 08:52:50 -0400
commit6436f9faf911b37da1025772d6bea6347d752ac0 (patch)
treea66777952cfc38a05a539c81f8488bd276d5131e /Makefile
parente41bd981cbc2242b5e44da0bef48fd0f57065fed (diff)
downloadlibutf8proc-6436f9faf911b37da1025772d6bea6347d752ac0.tar.gz
libutf8proc-6436f9faf911b37da1025772d6bea6347d752ac0.tar.bz2
Rename libutf8proc -> libmojibake. Closes #5
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)/$@