8af480aec1
- Don't build ngctl(8) and cached(8) if threading libs aren't built. - Fix various issues in a cached(8) makefile.
16 lines
241 B
Makefile
16 lines
241 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= ${_ggatec} \
|
|
${_ggated} \
|
|
ggatel
|
|
|
|
.if ${MK_LIBTHR} != "no" || \
|
|
(${MACHINE_ARCH} != "sparc64" && ${MK_LIBPTHREAD} != "no")
|
|
_ggatec= ggatec
|
|
_ggated= ggated
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|