Home | History | Annotate | Line # | Download | only in bootblock
Makefile.inc revision 1.1
      1  1.1  is #	$NetBSD: Makefile.inc,v 1.1 1997/05/19 21:19:20 is Exp $
      2  1.1  is 
      3  1.1  is BINDIR=		/usr/mdec
      4  1.1  is 
      5  1.1  is ### Figure out what to use for aout2bb
      6  1.1  is AOUT2BBDIR=	${.CURDIR}/../aout2bb
      7  1.1  is 
      8  1.1  is .if exists(${AOUT2BBDIR}/obj.${MACHINE})
      9  1.1  is AOUT2BBOBJDIR=	${AOUT2BBDIR}/obj.${MACHINE}
     10  1.1  is .elif exists(${AOUT2BBDIR}/obj)
     11  1.1  is AOUT2BBOBJDIR=	${AOUT2BBDIR}/obj
     12  1.1  is .else
     13  1.1  is AOUT2BBOBJDIR=	${AOUT2BBDIR}
     14  1.1  is .endif
     15  1.1  is AOUT2BB=	${AOUT2BBOBJDIR}/aout2bb
     16  1.1  is 
     17  1.1  is ${AOUT2BB}:
     18  1.1  is 	@cd ${AOUT2BBDIR} && make depend && make
     19  1.1  is 
     20  1.1  is ### Figure out what to use for txlt
     21  1.1  is TXLTDIR=	${.CURDIR}/../txlt
     22  1.1  is 
     23  1.1  is .if exists(${TXLTDIR}/obj.${MACHINE})
     24  1.1  is TXLTOBJDIR=	${TXLTDIR}/obj.${MACHINE}
     25  1.1  is .elif exists(${TXLTDIR}/obj)
     26  1.1  is TXLTOBJDIR=	${TXLTDIR}/obj
     27  1.1  is .else
     28  1.1  is TXLTOBJDIR=	${TXLTDIR}
     29  1.1  is .endif
     30  1.1  is TXLT=		${TXLTOBJDIR}/txlt
     31  1.1  is 
     32  1.1  is ${TXLT}:
     33  1.1  is 	@cd ${TXLTDIR} && make depend && make
     34