Home | History | Annotate | Line # | Download | only in m68060
Makefile revision 1.4
      1  1.4  lukem # $NetBSD: Makefile,v 1.4 2003/10/26 07:25:34 lukem Exp $
      2  1.1     is 
      3  1.3  lukem .include <bsd.own.mk>
      4  1.4  lukem .include <bsd.sys.mk>		# for HOST_SH
      5  1.3  lukem 
      6  1.3  lukem M060SP=		${NETBSDSRCDIR}/sys/arch/m68k/060sp
      7  1.1     is ASM2GAS=	${M060SP}/asm2gas
      8  1.2     is FPLSP_SA=	${M060SP}/dist/fplsp.sa
      9  1.1     is 
     10  1.1     is all: fplsp.hex fplsp_wrap.S
     11  1.1     is 
     12  1.1     is fplsp_wrap.S Makefile.list: makeas.sh
     13  1.4  lukem 	${HOST_SH} makeas.sh
     14  1.1     is 
     15  1.1     is fplsp.hex: ${FPLSP_SA} ${ASM2GAS} makeoffs.awk
     16  1.4  lukem 	${HOST_SH} ${ASM2GAS} ${FPLSP_SA} | awk -f makeoffs.awk > fplsp.hex
     17  1.1     is 
     18  1.1     is .if exists(Makefile.list)
     19  1.1     is .include "Makefile.list"
     20  1.1     is .endif
     21  1.1     is 
     22  1.1     is clean:
     23  1.1     is 	-rm ${ARCH_SRCS} ${ARCH_ADDS} fplsp.hex Makefile.list
     24