diff options
author | Elias Norberg <xyzzy@kudzu.se> | 2012-01-12 00:17:33 +0100 |
---|---|---|
committer | Elias Norberg <xyzzy@kudzu.se> | 2012-01-16 19:51:27 +0100 |
commit | bc81e88b13c0ddfa385a10cfbe2ea93259c7f8a4 (patch) | |
tree | 9ef03ce4c6316b5b15484a6ca08d582c319fad3d /Makefile | |
parent | a8a93c2b7cae6c1d217bca596d8b0b631efe97b7 (diff) | |
download | xombrero-bc81e88b13c0ddfa385a10cfbe2ea93259c7f8a4.tar.gz |
Use a list of TLD's to properly handle multi-part TLD's
The list used is from publicsuffix.org. It gets installed to the resource-directory as 'tld-rules'
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 58982ce..d352672 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ PROG=xxxterm MAN=xxxterm.1 SRCS= cookie.c inspector.c marco.c about.c whitelist.c settings.c inputfocus.c -SRCS+= history.c completion.c externaleditor.c xxxterm.c +SRCS+= history.c completion.c tldlist.c externaleditor.c xxxterm.c CFLAGS+= -O2 -Wall -Wno-format-extra-args -Wunused CFLAGS+= -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-sign-compare CFLAGS+= -I. @@ -49,6 +49,7 @@ beforeinstall: install -m 644 ${.CURDIR}/xxxtermicon48.png ${PREFIX}/share/xxxterm install -m 644 ${.CURDIR}/xxxtermicon64.png ${PREFIX}/share/xxxterm install -m 644 ${.CURDIR}/xxxtermicon128.png ${PREFIX}/share/xxxterm + install -m 644 ${.CURDIR}/tld-rules ${PREFIX}/share/xxxterm install -m 644 ${.CURDIR}/style.css ${PREFIX}/share/xxxterm ${PROG} ${OBJS} beforedepend: javascript.h |