1 # $NetBSD: Makefile,v 1.122 2008/10/19 19:40:19 apb Exp $ 2 3 .include <bsd.own.mk> 4 5 .if defined(HAVE_GCC) 6 .if ${HAVE_GCC} == "4" 7 TOOLCHAIN_BITS= gmake .WAIT 8 .endif 9 .if ${TOOLCHAIN_MISSING} == "no" 10 TOOLCHAIN_BITS+= binutils .WAIT 11 TOOLCHAIN_BITS+= gcc 12 . if ${MKCROSSGDB:Uno} != "no" 13 TOOLCHAIN_BITS+= gdb 14 . endif 15 TOOLCHAIN_BITS+= .WAIT dbsym mdsetimage 16 # XXX Eventually, we want to be able to build dbsym and mdsetimage 17 # XXX if EXTERNAL_TOOLCHAIN is set. 18 .endif 19 .endif 20 21 .if defined(HAVE_PCC) 22 TOOLCHAIN_BITS= gmake .WAIT 23 .if ${TOOLCHAIN_MISSING} == "no" 24 TOOLCHAIN_BITS+= binutils .WAIT 25 TOOLCHAIN_BITS+= pcc 26 .endif 27 TOOLCHAIN_BITS+= .WAIT dbsym mdsetimage 28 .endif 29 30 LINT_BITS= 31 .if ${MKLINT} != "no" 32 LINT_BITS= lint lint2 33 .endif 34 35 # Dependencies in SUBDIR below ordered to maximize parallel ability. 36 .if !defined(NOSUBDIR) # { 37 38 SUBDIR= host-mkdep .WAIT compat .WAIT \ 39 binstall .WAIT mktemp .WAIT \ 40 cap_mkdb crunchgen ctags genassym gencat hexdump join \ 41 ${LINT_BITS} \ 42 lorder m4 makewhatis mkdep mtree rpcgen tsort uudecode \ 43 sed .WAIT \ 44 texinfo .WAIT \ 45 yacc .WAIT \ 46 awk .WAIT \ 47 lex .WAIT \ 48 ${TOOLCHAIN_BITS} \ 49 asn1_compile atf-compile cat cksum compile_et config db \ 50 file lint1 \ 51 makefs menuc mkcsmapper mkesdb mklocale mknod msgc \ 52 pax .WAIT \ 53 disklabel .WAIT \ 54 paxctl .WAIT \ 55 fdisk .WAIT \ 56 installboot .WAIT \ 57 pwd_mkdb stat strfile sunlabel zic 58 59 .if ${MKMAN} != "no" || ${MKDOC} != "no" || ${MKHTML} != "no" 60 SUBDIR+= groff 61 .endif 62 63 .if ${MKMAINTAINERTOOLS:Uno} != "no" 64 SUBDIR+= autoconf .WAIT gettext 65 .endif 66 67 .if ${MACHINE} == "hp700" 68 SUBDIR+= hp700-mkboot 69 .endif 70 71 .if ${MACHINE} == "ibmnws" 72 SUBDIR+= ibmnws-ncdcs 73 .endif 74 75 .if ${MACHINE} == "macppc" 76 SUBDIR+= macppc-fixcoff 77 .endif 78 79 .if (${MACHINE} == "prep" || ${MACHINE} == "rs6000" || ${MACHINE} == "bebox") 80 SUBDIR+= powerpc-mkbootimage 81 .endif 82 83 .if (${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb") 84 SUBDIR+= mips-elf2ecoff 85 .endif 86 87 .if (${MACHINE} == "sgimips") 88 SUBDIR+= sgivol 89 .endif 90 91 .if ${MACHINE} == "acorn32" 92 SUBDIR+= sparkcrc 93 .endif 94 95 .if (${MACHINE} == "sparc" || ${MACHINE} == "sparc64") 96 SUBDIR+= fgen 97 .endif 98 99 .if ${MACHINE} == "amiga" 100 SUBDIR+= amiga-elf2bb 101 SUBDIR+= amiga-txlt 102 .endif 103 104 .if ${MACHINE} == "hp300" 105 SUBDIR+= hp300-mkboot 106 .endif 107 108 .endif # ! NOSUBDIR # } 109 110 check_MKTOOLS: .PHONY .NOTMAIN 111 .if ${MKTOOLS:Uyes} == "no" 112 @echo '*** WARNING: "MKTOOLS" is set to "no"; this will prevent building and' 113 @echo '*** updating your host toolchain. This should be used only as a' 114 @echo '*** temporary workaround for toolchain problems, as it will result' 115 @echo '*** in version skew and build errors over time!' 116 .endif 117 118 .if ${MKTOOLS:Uyes} == "no" || ${USETOOLS} != "yes" # { 119 realall realdepend install: check_MKTOOLS 120 121 .for dir in ${SUBDIR:N.WAIT} 122 all-${dir} depend-${dir} dependall-${dir} install-${dir}: 123 @true 124 .endfor 125 .endif # } 126 127 .include <bsd.subdir.mk> 128 .include <bsd.obj.mk> 129 130 .if !defined(PREVIOUSTOOLDIR) 131 . if exists(PREVIOUSTOOLDIR) 132 PREVIOUSTOOLDIR!= cat PREVIOUSTOOLDIR 133 . else 134 PREVIOUSTOOLDIR= 135 . endif 136 .endif 137 138 CLEANFILES+= PREVIOUSTOOLDIR 139 140 realall realdepend: .MAKE 141 .if !empty(PREVIOUSTOOLDIR) && "${PREVIOUSTOOLDIR}" != "${TOOLDIR}" 142 @echo "*** WARNING: TOOLDIR has moved?" 143 @echo "*** PREVIOUSTOOLDIR '${PREVIOUSTOOLDIR}'" 144 @echo "*** != TOOLDIR '${TOOLDIR}'" 145 @echo "*** Cleaning mis-matched tools" 146 rm -f PREVIOUSTOOLDIR 147 (cd ${.CURDIR} && ${MAKE} PREVIOUSTOOLDIR=${TOOLDIR} cleandir) 148 .endif 149 echo ${TOOLDIR} >PREVIOUSTOOLDIR 150 151 # For each .WAIT point, make sure the immediately preceding target is 152 # installed before building anything after that point. 153 # (dsl: which means that with: 'a b .WAIT c' the build of 'c' waits for the 154 # install of 'b', but not the install of 'a'.) 155 # 156 # We use the "internal" targets and dependencies generated by <bsd.subdir.mk> 157 # to achieve this. These targets look like: 158 # subdir-all: all-dir1 [.WAIT] all-dir2 etc.. 159 # subdir-install: install-dir1 [.WAIT] install-dir2 etc.. 160 # and so on for each element in ${TARGETS}, with .WAIT sources inserted at 161 # places corresponding to the .WAITs in our $SUBDIR variable. 162 # 163 # Also, since we're now mixing `install' with `all' and `depend' targets 164 # an order relationship between those in each individual subdirectory 165 # must be established. 166 # 167 _deps:= 168 _prev:= 169 170 .for d in ${SUBDIR} 171 _this:= ${d} 172 173 .if ${_this} == ".WAIT" 174 175 # setup dependency to apply to all/depend targets in the next group 176 _deps:= ${_deps} ${_prev:S/^/install-/} 177 178 # if we're building *only* individual targets (i.e. "dependall-yacc"), 179 # make sure prerequisite tools build before installing 180 # XXX: dsl: this is likely to generate a dependency loop since there is 181 # a .ORDER releation between the nodes as well. 182 .if !make(all) && !make(dependall) && !make(install) 183 install-${_prev}: dependall-${_prev} 184 .endif 185 186 .else 187 188 # order depend/all/install targets for ${d} subdir. 189 .ORDER: depend-${d} all-${d} dependall-${d} install-${d} 190 191 # prevent cleandir in real{all,depend} from interfering with subdir makes 192 .ORDER: realdepend dependall-${d} 193 .ORDER: realdepend depend-${d} 194 .ORDER: realall all-${d} 195 196 # make all/depend-${d} dependent on list of install targets 197 depend-${d} all-${d} dependall-${d}: ${_deps} 198 199 .endif 200 201 # stash current name in case the next entry is .WAIT 202 _prev:= ${d} 203 .endfor 204 205 cleandir: 206 rm -f ${CLEANFILES} 207