17c478bd9Sstevel@tonic-gate#
27c478bd9Sstevel@tonic-gate# CDDL HEADER START
37c478bd9Sstevel@tonic-gate#
47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
59cd53461Shyw# Common Development and Distribution License (the "License").
69cd53461Shyw# You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate#
87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate# and limitations under the License.
127c478bd9Sstevel@tonic-gate#
137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate#
197c478bd9Sstevel@tonic-gate# CDDL HEADER END
207c478bd9Sstevel@tonic-gate#
217c478bd9Sstevel@tonic-gate#
22d24234c2SJerry Gilliam# Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate# Use is subject to license terms.
242a1fd0ffSPeter Tribble# Copyright 2019 Peter Tribble.
257c478bd9Sstevel@tonic-gate#
267c478bd9Sstevel@tonic-gate
277c478bd9Sstevel@tonic-gateTOPDIR =	../../../../..
287c478bd9Sstevel@tonic-gate
297c478bd9Sstevel@tonic-gateinclude $(TOPDIR)/uts/Makefile.uts
307c478bd9Sstevel@tonic-gate
317c478bd9Sstevel@tonic-gateMODULE	= fs
327c478bd9Sstevel@tonic-gate
337c478bd9Sstevel@tonic-gatePLATLINKS	= SUNW,Ultra-2
347c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Ultra-250
357c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Ultra-4
367c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Ultra-Enterprise
377c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Sun-Blade-100
387c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Sun-Blade-1000
397c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Sun-Blade-1500
407c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Sun-Blade-2500
417c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,A70
42d58fda43SjbeloroPLATLINKS	+= SUNW,Sun-Fire-V445
43d58fda43SjbeloroPLATLINKS	+= SUNW,Sun-Fire-V215
447c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Sun-Fire
457c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Sun-Fire-V240
467c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Sun-Fire-V250
477c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Sun-Fire-V440
487c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Sun-Fire-280R
497c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Sun-Fire-880
507c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Sun-Fire-480R
517c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Sun-Fire-V890
527c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Sun-Fire-V490
537c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Netra-T12
547c478bd9Sstevel@tonic-gatePLATLINKS	+= SUNW,Netra-T4
551cb6af97SwnelsonPLATLINKS	+= SUNW,Netra-CP3010
569cd53461ShywPLATLINKS	+= SUNW,SPARC-Enterprise
577c478bd9Sstevel@tonic-gate
587c478bd9Sstevel@tonic-gateLINKED_DIRS	= $(PLATLINKS:%=$(USR_PLAT_DIR)/%)
597c478bd9Sstevel@tonic-gateLINKED_LIB_DIRS	= $(PLATLINKS:%=$(USR_PLAT_DIR)/%/lib)
607c478bd9Sstevel@tonic-gateLINKED_LIB_FS_DIRS	= $(PLATLINKS:%=$(USR_PLAT_DIR)/%/lib/fs)
617c478bd9Sstevel@tonic-gate
627c478bd9Sstevel@tonic-gateall	:=	TARGET = all
637c478bd9Sstevel@tonic-gateinstall	:=	TARGET = install
647c478bd9Sstevel@tonic-gateclean	:=	TARGET = clean
657c478bd9Sstevel@tonic-gate
667c478bd9Sstevel@tonic-gateTARG_MACH =	sparcv9
677c478bd9Sstevel@tonic-gateTARG_MACH_DIR =	sparcv9
687c478bd9Sstevel@tonic-gateARCHVERS =	v9
697c478bd9Sstevel@tonic-gatePLATFORM =	sun4u
707c478bd9Sstevel@tonic-gateARCHMMU  =	sfmmu
717c478bd9Sstevel@tonic-gatePROMVERS =	ieee1275
727c478bd9Sstevel@tonic-gateASFLAGS +=	$(sparcv9_XARCH)
737c478bd9Sstevel@tonic-gate
747c478bd9Sstevel@tonic-gateinclude ../Makefile.com
757c478bd9Sstevel@tonic-gate
76d24234c2SJerry Gilliaminclude $(TOPDIR)/psm/Makefile.psm.64
77d24234c2SJerry Gilliaminclude $(BOOTSRCDIR)/Makefile.rules
787c478bd9Sstevel@tonic-gate
79d24234c2SJerry GilliamFRC:
807c478bd9Sstevel@tonic-gate
81d24234c2SJerry Gilliam.KEEP_STATE:
827c478bd9Sstevel@tonic-gate
83*1f4c6dbcSPeter Tribbleall:
847c478bd9Sstevel@tonic-gate
85d24234c2SJerry Gilliaminstall: all $(LINKED_DIRS) $(LINKED_LIB_DIRS) $(LINKED_LIB_FS_DIRS)
867c478bd9Sstevel@tonic-gate
87d24234c2SJerry Gilliamclean:
887c478bd9Sstevel@tonic-gate
89d24234c2SJerry Gilliamclobber: clean
90d24234c2SJerry Gilliam
91d24234c2SJerry Gilliamlint:
927c478bd9Sstevel@tonic-gate
937c478bd9Sstevel@tonic-gateFRC:
94