summary refs log tree commit diff
path: root/port/wcwidth/Makefile
blob: 50faa6536f9b07eea054e8d015c4024197884543 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
PREFIX ?= ~/.local

OBJS = wcwidth.o wcswidth.o

all: libwcwidth.dylib wcfix

libwcwidth.dylib: ${OBJS}
	${CC} -dynamiclib ${LDFLAGS} ${OBJS} -o $@

wcwidth.o: nonspacing.h wide.h

.SUFFIXES: .in

.in:
	sed 's|%%PREFIX%%|${PREFIX}|g' $< > $@
	chmod a+x $@

clean:
	rm -f libwcwidth.dylib wcfix ${OBJS}

install: libwcwidth.dylib wcfix
	install -d ${PREFIX}/lib ${PREFIX}/bin
	install -m 644 libwcwidth.dylib ${PREFIX}/lib
	install wcfix ${PREFIX}/bin

uninstall:
	rm -f ${PREFIX}/lib/libwcwidth.dylib ${PREFIX}/bin/wcfix
-authentication.lua?id=9dde6d38e9fc273fc62386eeda0da2e89a2cebfc&follow=1'>auth: document tweakables in lua scriptJason A. Donenfeld 2014-01-17repolist: make owner clickable to searchJason A. Donenfeld 2014-01-17ui-shared: move about tab all the way to the leftJason A. Donenfeld 2014-01-17filter: don't forget to reap the auth filterJason A. Donenfeld 2014-01-17cgit.c: free tmp variableJason A. Donenfeld 2014-01-17Switch to exclusively using global ctxLukas Fleischer 2014-01-16auth: have cgit calculate login addressJason A. Donenfeld 2014-01-16auth: lua string comparisons are time invariantJason A. Donenfeld 2014-01-16authentication: use hidden form instead of refererJason A. Donenfeld 2014-01-16auth: add basic authentication filter frameworkJason A. Donenfeld 2014-01-16t0111: Additions and fixesLukas Fleischer 2014-01-16parsing.c: Remove leading space from committerLukas Fleischer