aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2021-01-27 10:47:49 +0000
committerOmar Polo <op@omarpolo.com>2021-01-27 10:47:49 +0000
commit3300cbe06a9567c66ee63f3866bcbcf3430e0205 (patch)
treea7686f8e774573b55ebbe18373a27eb60f44baa4 /Makefile
parent390a61189309451462c0a1dc56c68f71e334ad4b (diff)
initial punycode support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c600dd3..576b49c 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ lex.yy.c: lex.l y.tab.c
y.tab.c: parse.y
${YACC} -b y -d parse.y
-SRCS = gmid.c iri.c utf8.c ex.c server.c sandbox.c mime.c
+SRCS = gmid.c iri.c utf8.c ex.c server.c sandbox.c mime.c puny.c
OBJS = ${SRCS:.c=.o} lex.yy.o y.tab.o ${COMPAT}
gmid: ${OBJS}