"GOT", but the "O" is a cute, smiling pufferfish. Index | Thread | Search

From:
Kyle Ackerman <kack@kyleackerman.net>
Subject:
Re: got{,sys,web}d link-kits
To:
gameoftrees@openbsd.org
Date:
Tue, 16 Jun 2026 21:30:05 -0600

Download raw body.

Thread
Here is my last diff in this series.  This adds the RELINK flag into
got{,sys,web}d Makefiles to generate the link-kits,


diff 69ac886cd64b82483fbb0e3114eb447f1d2ff9e0 refs/heads/link-kit
commit - 69ac886cd64b82483fbb0e3114eb447f1d2ff9e0
commit + 6f1405c19e698a1bc8aa206634a77ed98a14424c
blob - 93fc5b4c257488c3d210e384972dcaef8524264c
blob + 39bac4b9de536e1602d54558071ff21b9c5d7a57
--- gotd/Makefile
+++ gotd/Makefile
@@ -30,7 +30,7 @@ MAN =		${PROG}.conf.5 ${PROG}-secrets.conf.5 ${PROG}.8
 
 CPPFLAGS = -I${.CURDIR}/../include -I${.CURDIR}/../lib -I${.CURDIR}
 YFLAGS =
-
+RELINK = ./${PROG} -V
 .if defined(PROFILE)
 LDADD = -lutil_p -lz_p -lm_p -lc_p -levent_p
 .else
blob - d6657cc641f50d56c8989ad23fd8fa878eece754
blob + edc62c03400c131c00ea129519752058f4481a89
--- gotsysd/Makefile
+++ gotsysd/Makefile
@@ -20,7 +20,7 @@ MAN =		${PROG}.conf.5 ${PROG}.8
 CPPFLAGS = -I${.CURDIR}/../include -I${.CURDIR}/../lib -I${.CURDIR}/../gotsys \
 	-I${.CURDIR}/../gotwebd -I${.CURDIR}
 YFLAGS =
-
+RELINK = ./${PROG} -V
 .if defined(PROFILE)
 LDADD = -lutil_p -lc_p -levent_p
 .else
blob - c816a04f5613ec33fa32d78927897314fa24f6d2
blob + b518742dc7694df2fff69a97ab4b745227c18f56
--- gotwebd/Makefile
+++ gotwebd/Makefile
@@ -41,7 +41,7 @@ LDADD +=	-lz -levent -lutil -lm -lcrypto
 YFLAGS =
 DPADD =		${LIBEVENT} ${LIBUTIL} ${LIBM} ${LIBCRYPTO}
 #CFLAGS +=	-DGOT_NO_OBJ_CACHE
-
+RELINK = ./${PROG} -V
 .if ${GOT_RELEASE} != "Yes"
 NOMAN = Yes
 .endif