xref: /illumos-gate/usr/src/psm/stand/boot/sparcv9/sun4u/Makefile (revision 168c213023b7f347f11abfc72f448b0c621ab718)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21#
22# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25#ident	"%Z%%M%	%I%	%E% SMI"
26#
27
28TOPDIR =	../../../../..
29
30include $(TOPDIR)/uts/Makefile.uts
31
32MODULE	= fs
33
34PLATLINKS	= SUNW,Ultra-2
35PLATLINKS	+= SUNW,Ultra-250
36PLATLINKS	+= SUNW,Ultra-4
37PLATLINKS	+= SUNW,Ultra-Enterprise
38PLATLINKS	+= SUNW,Ultra-Enterprise-10000
39PLATLINKS	+= SUNW,UltraSPARC-IIi-Netract
40PLATLINKS	+= SUNW,UltraSPARC-IIe-NetraCT-40
41PLATLINKS	+= SUNW,UltraSPARC-IIe-NetraCT-60
42PLATLINKS	+= SUNW,Sun-Blade-100
43PLATLINKS	+= SUNW,Sun-Blade-1000
44PLATLINKS	+= SUNW,Sun-Blade-1500
45PLATLINKS	+= SUNW,Sun-Blade-2500
46PLATLINKS	+= SUNW,A70
47PLATLINKS	+= SUNW,Sun-Fire-V445
48PLATLINKS	+= SUNW,Sun-Fire-V215
49PLATLINKS	+= SUNW,Sun-Fire
50PLATLINKS	+= SUNW,Sun-Fire-V240
51PLATLINKS	+= SUNW,Sun-Fire-V250
52PLATLINKS	+= SUNW,Sun-Fire-V440
53PLATLINKS	+= SUNW,Sun-Fire-280R
54PLATLINKS	+= SUNW,Sun-Fire-15000
55PLATLINKS	+= SUNW,Sun-Fire-880
56PLATLINKS	+= SUNW,Sun-Fire-480R
57PLATLINKS	+= SUNW,Sun-Fire-V890
58PLATLINKS	+= SUNW,Sun-Fire-V490
59PLATLINKS	+= SUNW,Serverblade1
60PLATLINKS	+= SUNW,Netra-T12
61PLATLINKS	+= SUNW,Netra-T4
62PLATLINKS	+= SUNW,Netra-CP2300
63PLATLINKS	+= SUNW,Netra-CP3010
64PLATLINKS	+= SUNW,SPARC-Enterprise
65
66LINKED_DIRS	= $(PLATLINKS:%=$(USR_PLAT_DIR)/%)
67LINKED_LIB_DIRS	= $(PLATLINKS:%=$(USR_PLAT_DIR)/%/lib)
68LINKED_LIB_FS_DIRS	= $(PLATLINKS:%=$(USR_PLAT_DIR)/%/lib/fs)
69
70all	:=	TARGET = all
71install	:=	TARGET = install
72clean	:=	TARGET = clean
73
74TARG_MACH =	sparcv9
75TARG_MACH_DIR =	sparcv9
76ARCHVERS =	v9
77PLATFORM =	sun4u
78ARCHMMU  =	sfmmu
79PROMVERS =	ieee1275
80ASFLAGS +=	$(sparcv9_XARCH)
81
82PLAT_C_SRC =	machdep.c
83ARCH_C_SRC =	sun4u_memlist.c sun4x_standalloc.c sun4dep.c
84ARCH_S_SRC =	sparcv9_subr.s
85SRT0_S =	sun4u_srt0.s
86INLINES =
87
88LDFLAGS +=	-L$(TOPDIR)/psm/stand/lib/promif/$(TARG_MACH)/$(PROMVERS)/common
89
90#
91# The following libraries are build in LIBPLAT_DIR
92#
93LIBPLAT_DIR =	$(TOPDIR)/psm/stand/lib/promif/$(TARG_MACH)/$(PROMVERS)/$(PLATFORM)
94LIBPLAT_LIBS =  libplat.a
95LIBPLAT_L_LIBS=	$(LIBPLAT_LIBS:lib%.a=llib-l%.ln)
96LIBPLAT_DEP = 	$(LIBPLAT_DIR)/$(LIBPLAT_LIBS)
97LIBPLAT_DEP_L =	$(LIBPLAT_DIR)/$(LIBPLAT_L_LIBS)
98
99#
100# Platform specific libraries
101#
102PSMLIBS +=      $(LIBPLAT_LIBS:lib%.a=-l%)
103PSMLIB_DIRS +=  $(LIBPLAT_DIR)
104
105
106#	MPSAS support
107MPSAS_BUILD:sh=		echo \\043
108$(MPSAS_BUILD)ARCHOPTS += -DMPSAS
109
110include ../Makefile.com
111
112# re-define ELFCONV for 4u--- sun4u can boot ELF directly
113ELFCONV = /usr/bin/cp
114
115# Don't need mapfile.inet for 4u inetboot
116NFS_MAPFILE = $(MACH_DIR)/mapfile
117
118#
119# Set the choice of compiler.
120
121include $(TOPDIR)/psm/Makefile.psm.64
122
123CFLAGS64	+= -xchip=ultra $(CCABS32)
124
125#
126# XXX this totally sucks since it effectively turns off -errchk=longptr64,
127# which we really should be using.
128#
129LINTFLAGS64 = $(LINTFLAGS) -Xarch=v9
130
131#
132# Cross-reference customization: include all boot-related source files.
133#
134STANDLIBDIR=	../../../../../stand/lib
135STANDSYSDIR=	../../../../../stand/sys
136PROMDIRS=	../../../../promif
137NAMESDIRS=	../../../lib/names/sparcv9 ../../../lib/names/sparc/common
138XRDIRS +=	../../sparc/common ../../common $(STANDLIBDIR) \
139		$(STANDSYSDIR) $(PROMDIRS) $(NAMESDIRS)
140XRPRUNE =	i86pc i386
141
142cscope.out tags: FRC
143	$(XREF) -x $@
144
145FRC:
146