17 lines
327 B
Makefile
17 lines
327 B
Makefile
#
|
|
# $NetBSD: Makefile,v 1.3 1996/12/31 22:44:13 veego Exp $
|
|
#
|
|
AS = as -m68060
|
|
LD = ld
|
|
|
|
.SUFFIXES: .o .S .sa .defs .h
|
|
|
|
.sa.S:
|
|
sh ${.CURDIR}/asm2gas ${.IMPSRC} >${.TARGET}
|
|
|
|
060sp.o: netbsd.S inetbsd.S fnetbsd.S isp.S fpsp.S copyright.S
|
|
$(AS) -o ${.TARGET} -I${.CURDIR} ${.CURDIR}/netbsd.S
|
|
|
|
clean:
|
|
rm -f 060sp.o isp.S fpsp.S
|