NetBSD/sys/arch/amiga/stand/bootblock/Makefile.inc
is 3274c536b3 Yet another try to sanitize the bootblock build. Each major target has now
its own subdirectory.
Smaller changes involved:
- installboot installs to /usr/mdec
- installboot.8 installs to /usr/share/man/cat8/amiga/
1997-05-19 21:18:58 +00:00

34 lines
744 B
Makefile

# $NetBSD: Makefile.inc,v 1.1 1997/05/19 21:19:20 is Exp $
BINDIR= /usr/mdec
### Figure out what to use for aout2bb
AOUT2BBDIR= ${.CURDIR}/../aout2bb
.if exists(${AOUT2BBDIR}/obj.${MACHINE})
AOUT2BBOBJDIR= ${AOUT2BBDIR}/obj.${MACHINE}
.elif exists(${AOUT2BBDIR}/obj)
AOUT2BBOBJDIR= ${AOUT2BBDIR}/obj
.else
AOUT2BBOBJDIR= ${AOUT2BBDIR}
.endif
AOUT2BB= ${AOUT2BBOBJDIR}/aout2bb
${AOUT2BB}:
@cd ${AOUT2BBDIR} && make depend && make
### Figure out what to use for txlt
TXLTDIR= ${.CURDIR}/../txlt
.if exists(${TXLTDIR}/obj.${MACHINE})
TXLTOBJDIR= ${TXLTDIR}/obj.${MACHINE}
.elif exists(${TXLTDIR}/obj)
TXLTOBJDIR= ${TXLTDIR}/obj
.else
TXLTOBJDIR= ${TXLTDIR}
.endif
TXLT= ${TXLTOBJDIR}/txlt
${TXLT}:
@cd ${TXLTDIR} && make depend && make