xref: /netbsd/sys/arch/cesfic/conf/Makefile.cesfic (revision 6550d01e)
1#	$NetBSD: Makefile.cesfic,v 1.16 2011/01/21 15:59:05 joerg 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/cesfic/conf/``machineid''
9# after which you should do
10#	config machineid
11# Machine generic makefile changes should be made in
12#	/sys/arch/cesfic/conf/Makefile.cesfic
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##
28CESFIC=		$S/arch/cesfic
29GENASSYM_CONF=	${CESFIC}/cesfic/genassym.cf
30
31##
32## (2) compile settings
33##
34CPPFLAGS+=	-Dcesfic
35CWARNFLAGS+=	-Wno-format
36CFLAGS+=	-msoft-float
37AFLAGS+=	-x assembler-with-cpp
38AFLAGS+=	-Wa,-m68040 -Wa,-m68030 -Wa,-m68851
39
40##
41## (3) libkern and compat
42##
43KERN_AS=	obj
44
45##
46## (4) local objects, compile rules, and dependencies
47##
48# for the Motorola 68040 Floating Point Software Product
49.include "$S/arch/m68k/fpsp/Makefile.inc"
50
51MD_OBJS=	locore.o ${FPSP}
52MD_CFILES=
53MD_SFILES=	${CESFIC}/cesfic/locore.s
54
55locore.o: ${CESFIC}/cesfic/locore.s assym.h
56	${NORMAL_S}
57
58##
59## (5) link settings
60##
61LINKFORMAT=	-n
62TEXTADDR?=	2000
63
64##
65## (6) port specific target dependencies
66##
67
68##
69## (7) misc settings
70##
71
72##
73## (8) config(8) generated machinery
74##
75%INCLUDES
76
77%OBJS
78
79%CFILES
80
81#%SFILES
82
83%LOAD
84
85%RULES
86
87##
88## (9) port independent kernel machinery
89##
90.include "$S/conf/Makefile.kern.inc"
91
92##
93## (10) Appending make options.
94##
95%MAKEOPTIONSAPPEND
96