xref: /netbsd/sys/arch/amiga/conf/Makefile.amiga (revision bf9ec67e)
1#	$NetBSD: Makefile.amiga,v 1.99 2002/05/26 12:47:42 jdolecek Exp $
2
3# Makefile for NetBSD
4#
5# This makefile is constructed from a machine description:
6#	config machineid
7# Most changes should be made in the machine description
8#	/sys/arch/amiga/conf/``machineid''
9# after which you should do
10#	config machineid
11# Machine generic makefile changes should be made in
12#	/sys/arch/amiga/conf/Makefile.amiga
13# after which config should be rerun for all machines of that type.
14#
15# To specify debugging, add the config line: makeoptions DEBUG="-g"
16# A better way is to specify -g only for a few files.
17#
18#	makeoptions DEBUGLIST="uvm* trap if_*"
19
20MACHINE_ARCH=m68k
21USETOOLS?=	no
22NEED_OWN_INSTALL_TARGET?=no
23.include <bsd.own.mk>
24
25##
26## (1) port identification
27##
28AMIGA=		$S/arch/amiga
29GENASSYM=	${AMIGA}/amiga/genassym.cf
30
31##
32## (2) compile settings
33##
34CPPFLAGS+=	-Damiga -DFPCOPROC
35.if empty(IDENT:M-DM68060)
36CMACHFLAGS=	-m68020
37.else
38CMACHFLAGS=	-m68060 -Wa,-m68030 -Wa,-m68851
39.endif
40CFLAGS+=	${CMACHFLAGS} -msoft-float
41AFLAGS+=	-x assembler-with-cpp -traditional-cpp
42
43##
44## (3) libkern and compat
45##
46KERN_AS=	obj
47
48##
49## (4) local objects, compile rules, and dependencies
50##
51# for the Motorola 68040 Floating Point Software Product
52.include "$S/arch/m68k/fpsp/Makefile.inc"
53
54# for the Motorola 68060 Software Support Package
55.include "$S/arch/m68k/060sp/Makefile.inc"
56
57MD_OBJS=	locore.o ${FPSP}
58MD_CFILES=
59MD_SFILES=	${AMIGA}/amiga/locore.s
60
61locore.o: ${AMIGA}/amiga/locore.s assym.h
62	${NORMAL_S}
63
64##
65## (5) link settings
66##
67TEXTADDR?=	0
68LINKFORMAT=	-n
69
70##
71## (6) port specific target dependencies
72##
73
74# depend on CPU configuration
75amiga_init.o locore.o pmap.o sys_machdep.o: Makefile
76bzsc.o bztzsc.o cbiisc.o cbsc.o flsc.o sbic.o: Makefile
77
78# depends on defined(DRACO)
79a2kbbc.o: Makefile
80
81##
82## (7) misc settings
83##
84
85##
86## (8) config(8) generated machinery
87##
88%INCLUDES
89
90%OBJS
91
92%CFILES
93
94%SFILES
95
96%LOAD
97
98%RULES
99
100##
101## (9) port independent kernel machinery
102##
103.include "$S/conf/Makefile.kern.inc"
104