From 60d8682a5b22bfae067789612d76aaae92eb5901 Mon Sep 17 00:00:00 2001 From: leo Date: Wed, 4 Jun 1997 13:51:48 +0000 Subject: [PATCH] Add the 68060 Software Support Package. --- sys/arch/atari/conf/Makefile.atari | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/sys/arch/atari/conf/Makefile.atari b/sys/arch/atari/conf/Makefile.atari index dbdded193c4c..7bfc56bfa3ba 100644 --- a/sys/arch/atari/conf/Makefile.atari +++ b/sys/arch/atari/conf/Makefile.atari @@ -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 $@