commit b5b41717002ca7082d9004bf6a5b8f6bfc6ed372 from: Stefan Sperling date: Fri Apr 14 22:35:08 2023 UTC gotctl no longer needs to link to libz and libm commit - d3f03cd3f7e1461e228b11ff71909f2a1e19318a commit + b5b41717002ca7082d9004bf6a5b8f6bfc6ed372 blob - 61eb3c5d2c75ce1303a836e880c30e8394f98189 blob + 8cd44e3e91b34b73557549f8327e76eaf4eca243 --- gotctl/Makefile +++ gotctl/Makefile @@ -11,11 +11,11 @@ MAN = ${PROG}.8 CPPFLAGS = -I${.CURDIR}/../include -I${.CURDIR}/../lib -I${.CURDIR}/../gotd .if defined(PROFILE) -LDADD = -lutil_p -lz_p -lm_p -lc_p -levent_p +LDADD = -lutil_p -levent_p .else -LDADD = -lutil -lz -lm -levent +LDADD = -lutil -levent .endif -DPADD = ${LIBZ} ${LIBUTIL} +DPADD = ${LIBUTIL} .if ${GOT_RELEASE} != "Yes" NOMAN = Yes