34 lines
609 B
Makefile
34 lines
609 B
Makefile
|
|
.include <bsd.own.mk>
|
|
|
|
.if defined(__MINIX)
|
|
SUBDIR+= texinfo
|
|
|
|
.if ${USETOOLS} != "yes"
|
|
# MINIX: make sure sources are fetched, even when tools were not built earlier
|
|
MODULE= texinfo
|
|
GNUHOSTDIST= ${NETBSDSRCDIR}/gnu/dist/${MODULE}
|
|
.include "${.CURDIR}/../../minix/Makefile.fetchgnu"
|
|
|
|
realall realdepend: ${GNUHOSTDIST:H}/.gitignore
|
|
.endif # defined(__MINIX)
|
|
|
|
.else
|
|
SUBDIR+= bc
|
|
SUBDIR+= c89 c99
|
|
SUBDIR+= dc diffutils
|
|
SUBDIR+= rcs send-pr texinfo
|
|
|
|
.if ${MKBSDGREP} == "no"
|
|
SUBDIR+= grep
|
|
.endif
|
|
|
|
.if ${MKGROFF} != "no"
|
|
SUBDIR+= groff
|
|
.endif
|
|
|
|
SUBDIR+= gettext
|
|
.endif # defined(__MINIX)
|
|
|
|
.include <bsd.subdir.mk>
|