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