Home | History | Annotate | Line # | Download | only in tools
Makefile revision 1.17
      1  1.17  tv #	$NetBSD: Makefile,v 1.17 2001/11/13 16:17:24 tv Exp $
      2   1.1  tv 
      3   1.3  tv .include <bsd.own.mk>
      4   1.3  tv 
      5  1.16  tv # Dependencies in SUBDIR below ordered to maximize parallel ability.
      6  1.14  tv .if !defined(NOSUBDIR)
      7  1.16  tv SUBDIR=	mkdep .WAIT \
      8  1.16  tv 	binstall .WAIT \
      9  1.16  tv 		crunchgen gencat lint lint2 lorder mtree rpcgen \
     10  1.16  tv 		texinfo tsort \
     11  1.16  tv 	toolchain .WAIT \
     12  1.16  tv 		dbsym mdsetimage \
     13  1.16  tv 	yacc .WAIT \
     14  1.16  tv 		groff \
     15  1.16  tv 	lex .WAIT \
     16  1.16  tv 		asn1_compile compile_et config lint1 msgc menuc mklocale
     17  1.17  tv .endif
     18  1.17  tv 
     19  1.17  tv .if ${MKTOOLS:Uyes} == "no"
     20  1.17  tv realall install: _warn
     21  1.17  tv _warn:
     22  1.17  tv 	@echo '*** WARNING: "MKTOOLS" is set to "no"; this will prevent building and'
     23  1.17  tv 	@echo '*** updating your host toolchain.  This should be used only as a'
     24  1.17  tv 	@echo '*** temporary workaround for toolchain problems, as it will result'
     25  1.17  tv 	@echo '*** in version skew and build errors onver time!'
     26  1.17  tv 
     27  1.17  tv .for dir in ${SUBDIR:N.WAIT}
     28  1.17  tv all-${dir} depend-${dir} dependall-${dir} install-${dir}:
     29  1.17  tv 	@true
     30  1.17  tv .endfor
     31  1.14  tv .endif
     32   1.1  tv 
     33   1.1  tv .include <bsd.subdir.mk>
     34  1.11  tv .include <bsd.obj.mk>
     35  1.16  tv 
     36  1.16  tv # For each .WAIT point, make sure the previous target is installed before
     37  1.16  tv # building a dependent target.
     38  1.16  tv _dep:=
     39  1.16  tv _last:=
     40  1.16  tv .for d in ${SUBDIR}
     41  1.16  tv _this:=		${d}
     42  1.16  tv .if ${_this} == ".WAIT"
     43  1.16  tv _dep:=		${_dep} install-${_last}
     44  1.16  tv .else
     45  1.16  tv _last:=		${d}
     46  1.16  tv depend-${d} all-${d} dependall-${d}: ${_dep}
     47  1.16  tv .endif
     48  1.16  tv .endfor
     49  1.12  tv 
     50  1.12  tv cleantools:
     51  1.12  tv 	rm -r -f tools.${HOST_OSTYPE}
     52