2002-01-29 00:29:46 +03:00
|
|
|
# $NetBSD: Makefile.sun2,v 1.12 2002/01/28 21:29:46 thorpej Exp $
|
2001-03-30 01:07:56 +04:00
|
|
|
|
|
|
|
# Makefile for NetBSD
|
|
|
|
#
|
|
|
|
# This makefile is constructed from a machine description:
|
|
|
|
# config machineid
|
|
|
|
# Most changes should be made in the machine description
|
|
|
|
# /sys/arch/sun2/conf/``machineid''
|
|
|
|
# after which you should do
|
|
|
|
# config machineid
|
|
|
|
# Machine generic makefile changes should be made in
|
|
|
|
# /sys/arch/sun2/conf/Makefile.sun2
|
|
|
|
# after which config should be rerun for all machines of that type.
|
|
|
|
#
|
2001-12-01 18:23:18 +03:00
|
|
|
# To specify debugging, add the config line: makeoptions DEBUG="-g"
|
|
|
|
# A better way is to specify -g only for a few files.
|
2001-03-30 01:07:56 +04:00
|
|
|
#
|
2001-12-01 18:23:18 +03:00
|
|
|
# makeoptions DEBUGLIST="uvm* trap if_*"
|
2001-03-30 01:07:56 +04:00
|
|
|
|
2001-10-26 10:45:33 +04:00
|
|
|
USETOOLS?= no
|
2001-12-01 18:23:18 +03:00
|
|
|
NEED_OWN_INSTALL_TARGET?=no
|
2001-10-26 10:45:33 +04:00
|
|
|
.include <bsd.own.mk>
|
2001-10-23 23:26:41 +04:00
|
|
|
|
2001-12-01 18:23:18 +03:00
|
|
|
##
|
|
|
|
## (1) port identification
|
|
|
|
##
|
|
|
|
SUN2= $S/arch/sun2
|
|
|
|
GENASSYM= ${SUN2}/sun2/genassym.cf
|
2001-03-30 01:07:56 +04:00
|
|
|
|
2001-12-01 18:23:18 +03:00
|
|
|
##
|
|
|
|
## (2) compile settings
|
|
|
|
##
|
2001-03-30 01:07:56 +04:00
|
|
|
# Override CPP defaults entirely, so cross-compilation works.
|
|
|
|
# Keep -nostdinc before all -I flags, similar for -undef ...
|
2002-01-29 00:29:46 +03:00
|
|
|
CPPFLAGS+= -Dsun2
|
2001-12-01 18:23:18 +03:00
|
|
|
CFLAGS+= -msoft-float -fno-defer-pop
|
2001-03-30 01:07:56 +04:00
|
|
|
APPFLAGS= -x assembler-with-cpp -P -traditional ${CPPFLAGS} -D_LOCORE
|
|
|
|
|
|
|
|
# Do NOT assume the compiler does "-x funny_format" (gcc-specific)
|
|
|
|
# This needs an intermediate file. The original file is always
|
|
|
|
# safe in some far away directory, so just use the base name.
|
|
|
|
NORMAL_S= ${CPP} ${APPFLAGS} $< > $*.s ;\
|
2001-12-01 18:23:18 +03:00
|
|
|
${AS} -o $@ $*.s ; rm $*.s
|
2001-03-30 01:07:56 +04:00
|
|
|
|
2001-12-01 18:23:18 +03:00
|
|
|
##
|
|
|
|
## (3) libkern and compat
|
|
|
|
##
|
|
|
|
KERN_AS= obj
|
|
|
|
# XXX lib/libkern/arch/m68k/Makefile.inc needs to know that
|
|
|
|
# XXX our MACHINE_ARCH is m68000, and not m68k. --fredette
|
|
|
|
KERNMISCMAKEFLAGS= MACHINE_ARCH=${MACHINE_ARCH}
|
2001-03-30 01:07:56 +04:00
|
|
|
|
2001-12-01 18:23:18 +03:00
|
|
|
##
|
|
|
|
## (4) local objects, compile rules, and dependencies
|
|
|
|
##
|
|
|
|
MD_OBJS= locore.o
|
|
|
|
MD_CFILES=
|
|
|
|
MD_SFILES= ${SUN2}/sun2/locore.s
|
2001-03-30 01:07:56 +04:00
|
|
|
|
2001-12-01 18:23:18 +03:00
|
|
|
locore.o: ${SUN2}/sun2/locore.s
|
|
|
|
${NORMAL_S}
|
2001-03-30 01:07:56 +04:00
|
|
|
|
2001-12-01 18:23:18 +03:00
|
|
|
##
|
|
|
|
## (5) link settings
|
|
|
|
##
|
|
|
|
LINKFORMAT= -N
|
|
|
|
TEXTADDR?= 00006000
|
2001-03-30 01:07:56 +04:00
|
|
|
|
2001-12-01 18:23:18 +03:00
|
|
|
##
|
|
|
|
## (6) port specific target dependencies
|
|
|
|
##
|
2001-03-30 01:07:56 +04:00
|
|
|
|
|
|
|
# For cross-compilation, the "gcc -M" mkdep script is convenient,
|
|
|
|
# but that does not correctly make rules from *.s files. The
|
|
|
|
# easiest work-around is to just list those dependencies here.
|
|
|
|
locore.o: assym.h m68k/asm.h m68k/trap.h
|
|
|
|
copy.o: assym.h m68k/asm.h $S/sys/errno.h
|
|
|
|
bcopy.o: assym.h m68k/asm.h
|
|
|
|
copypage.o: assym.h m68k/asm.h
|
|
|
|
|
2001-11-20 15:56:17 +03:00
|
|
|
# depend on CPU configuration
|
2001-03-30 01:07:56 +04:00
|
|
|
db_machdep.o dvma.o machdep.o pmap.o sun2_startup.o vm_machdep.o: Makefile
|
|
|
|
|
|
|
|
# depends on DDB, etc.
|
|
|
|
stub.o: Makefile
|
|
|
|
|
2001-12-01 18:23:18 +03:00
|
|
|
##
|
|
|
|
## (7) misc settings
|
|
|
|
##
|
|
|
|
MKDEP_AFLAGS= ${APPFLAGS}
|
2001-03-30 01:07:56 +04:00
|
|
|
|
2001-12-01 18:23:18 +03:00
|
|
|
##
|
|
|
|
## (8) config(8) generated machinery
|
|
|
|
##
|
|
|
|
%INCLUDES
|
2001-03-30 01:07:56 +04:00
|
|
|
|
2001-12-01 18:23:18 +03:00
|
|
|
%OBJS
|
|
|
|
|
|
|
|
%CFILES
|
|
|
|
|
|
|
|
%SFILES
|
|
|
|
|
|
|
|
%LOAD
|
2001-03-30 01:07:56 +04:00
|
|
|
|
|
|
|
%RULES
|
2001-12-01 18:23:18 +03:00
|
|
|
|
|
|
|
##
|
|
|
|
## (9) port independent kernel machinery
|
|
|
|
##
|
|
|
|
.include "$S/conf/Makefile.kern.inc"
|