bf7113376a
programs there; make all Makefiles that use bsd.hostprog.mk include it. Namely turn off MKREPRO and don't make lint, man pages, info files etc. Remove the Makefile.inc files that contained these same settings, and remove the settings from Makefile.host
14 lines
296 B
Makefile
14 lines
296 B
Makefile
# $NetBSD: bsd.hostinit.mk,v 1.1 2018/05/01 19:59:44 christos Exp $
|
|
|
|
.if !defined(_BSD_HOSTINIT_MK_)
|
|
_BSD_HOSTINIT_MK_=1
|
|
|
|
NOINFO= # defined
|
|
NOLINT= # defined
|
|
NOMAN= # defined
|
|
MKREPRO=no # Native toolchain might be unable to do it
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.endif # !defined(_BSD_HOSTINIT_MK_)
|