Add the 68060 Software Support Package.

This commit is contained in:
leo 1997-06-04 13:51:48 +00:00
parent 75fe0ae7a5
commit 60d8682a5b

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.atari,v 1.32 1997/06/02 11:49:02 leo Exp $
# $NetBSD: Makefile.atari,v 1.33 1997/06/04 13:51:48 leo Exp $
# Makefile for NetBSD
#
@ -37,7 +37,12 @@ INCLUDES= -I. -I$S/arch -I$S -nostdinc
CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \
-Dmc68020 -Datari
CWARNFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes
CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} -msoft-float
.if empty(IDENT:M-DM68060)
CMACHFLAGS= -m68020
.else
CMACHFLAGS= -m68060 -Wa,-m68030
.endif
CFLAGS= ${DEBUG} ${CWARNFLAGS} ${COPTS} ${CMACHFLAGS} -msoft-float
AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE
LINKFLAGS= -n -Ttext 0 -e start
STRIPFLAGS= -d
@ -65,6 +70,9 @@ LIBCOMPAT= ${COMPATLIB_PROF}
### for the Motorola 68040 Floating Point Software Product
.include "$S/arch/m68k/fpsp/Makefile.inc"
### for the Motorola 68060 Software Support Package
.include "$S/arch/m68k/060sp/Makefile.inc"
# compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
# HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
@ -84,7 +92,7 @@ HOSTED_C= ${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $<
# ${SYSTEM_LD_HEAD}
# ${SYSTEM_LD} swapxxx.o
# ${SYSTEM_LD_TAIL}
SYSTEM_OBJ= locore.o ${FPSP} \
SYSTEM_OBJ= locore.o ${FPSP} ${060SP} \
param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT}
SYSTEM_DEP= Makefile ${SYSTEM_OBJ}
SYSTEM_LD_HEAD= @rm -f $@