summary refs log tree commit diff
path: root/port/wcwidth/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'port/wcwidth/Makefile')
-rw-r--r--port/wcwidth/Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/port/wcwidth/Makefile b/port/wcwidth/Makefile
deleted file mode 100644
index f6932d6d..00000000
--- a/port/wcwidth/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-PREFIX = ~/.local
-
-OBJS = wcwidth.o wcswidth.o
-DYLIB = libwcwidth.dylib
-
-${DYLIB}: ${OBJS}
-	${CC} -dynamiclib ${LDFLAGS} ${OBJS} -o $@
-
-wcwidth.o: nonspacing.h wide.h
-
-clean:
-	rm -f ${DYLIB} ${OBJS}
-
-install: ${DYLIB}
-	install -d ${PREFIX}/lib
-	install -m 644 ${DYLIB} ${PREFIX}/lib
-
-uninstall:
-	rm -f ${PREFIX}/lib/${DYLIB}