-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
68 lines (51 loc) · 1.73 KB
/
Makefile
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# moj makefile
CC ?= cc
MOJILIST=https://raw.githubusercontent.com/milesj/emojibase/master/packages/data/en/raw.json
# Do not touch.
all: moj libmoj.so
# Generate lookup lists
gen/emoji.json:
mkdir -p gen
wget -O $@ ${MOJILIST}
gen/emoji.csv: gen/emoji.json
jq -r '.[] | select(.emoji) | [.emoji] + .shortcodes | @csv' -- \
gen/emoji.json | \
sed 's/^"//;s/"$$//' | awk -f src/process.awk > $@
gen/emoji.gperf: src/gen_gperf.sh gen/emoji.csv
./src/gen_gperf.sh > ./gen/emoji.gperf
gen/emoji_list.h: src/gen_list.sh gen/emoji.csv
./src/gen_list.sh > $@
gen/lookup.c: gen/emoji.gperf
gperf --global-table --readonly-tables \
--struct-type --includes \
--compare-lengths --compare-strncmp \
--ignore-case -Q emoji_spool \
-H emoji_name_hash -N emoji_lookup_ref -m 3 \
--output-file=$@ $^
# Compile our code.
src/moj.o: gen/lookup.c gen/emoji_list.h src/moj.c
$(CC) -c ${CFLAGS} ${CPPFLAGS} -o $@ src/moj.c
libmoj.so: src/moj.o
$(CC) -shared -fPIC ${CFLAGS} ${CPPFLAGS} -o $@ ${LDFLAGS} $<
moj: src/main.c src/moj.o
$(CC) ${CFLAGS} ${CPPFLAGS} -o $@ ${LDFLAGS} $^
# Profanity plugin.
profanity_emoji.so: src/profanity_emoji.c src/moj.o
$(CC) -shared -fPIC ${CFLAGS} ${CPPFLAGS} -o $@ ${LDFLAGS} $^
profanity: profanity_emoji.so
# Install
install: moj
install -d $(DESTDIR)/$(PREFIX)/bin
install moj $(DESTDIR)/$(PREFIX)/bin
install-devel: libmoj.so
install -d $(DESTDIR)/$(PREFIX)/lib
install libmoj.so $(DESTDIR)/$(PREFIX)/lib
install -d $(DESTDIR)/$(PREFIX)/include
cp src/moj.h $(DESTDIR)/$(PREFIX)/include/libmoj.h
uninstall:
rm -f $(DESTDIR)/$(PREFIX)/bin/moj
uninstall-devel:
rm -f $(DESTDIR)/$(PREFIX)/lib/libmoj.so $(DESTDIR)/$(PREFIX)/include/libmoj.h
# Cleanup
clean:
rm -f moj gen/lookup.c src/*.o profanity_emoji.so