Makefile revision ba2be53024c0b999e74ba9adcd7d80fec5df8c57
0N/A#
0N/A# CDDL HEADER START
0N/A#
0N/A# The contents of this file are subject to the terms of the
0N/A# Common Development and Distribution License (the "License").
0N/A# You may not use this file except in compliance with the License.
0N/A#
0N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
0N/A# or http://www.opensolaris.org/os/licensing.
0N/A# See the License for the specific language governing permissions
0N/A# and limitations under the License.
0N/A#
0N/A# When distributing Covered Code, include this CDDL HEADER in each
0N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
0N/A# If applicable, add the following below this CDDL HEADER, with the
0N/A# fields enclosed by brackets "[]" replaced with your own identifying
0N/A# information: Portions Copyright [yyyy] [name of copyright owner]
0N/A#
0N/A# CDDL HEADER END
0N/A#
0N/A#
0N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
0N/A# Use is subject to license terms.
0N/A#
0N/A#ident "%Z%%M% %I% %E% SMI"
0N/A#
0N/A
0N/Ainclude ../../../Makefile.master
0N/A
0N/AHDRS= \
0N/A archsystm.h \
0N/A asm_linkage.h \
0N/A cmpregs.h \
0N/A cpu.h \
0N/A ddi_isa.h \
0N/A fasttrap_isa.h \
1173N/A frame.h \
1173N/A fsr.h \
1173N/A inline.h \
1173N/A kdi_machimpl.h \
1173N/A machlock.h \
0N/A machsig.h \
0N/A machtypes.h \
1173N/A old_procfs.h \
0N/A pcb.h \
0N/A procfs_isa.h \
0N/A psw.h \
0N/A reg.h \
0N/A regset.h \
0N/A spl.h \
0N/A stack.h \
0N/A stat_impl.h \
0N/A synch32.h \
0N/A trap.h \
0N/A ucontext.h \
0N/A utrap.h \
0N/A vmparam.h \
0N/A sysconfig_impl.h
0N/A
0N/AFPUHDRS= \
0N/A fpu_simulator.h \
0N/A fpusystm.h \
0N/A globals.h \
0N/A ieee.h
0N/A
0N/AFMCPUHDRS= \
0N/A UltraSPARC-II.h \
0N/A UltraSPARC-III.h \
0N/A UltraSPARC-T1.h \
0N/A SPARC64-VI.h
0N/A
0N/AROOTDIR= $(ROOT)/usr/include/sys
0N/AROOTDIRS= \
0N/A $(ROOTDIR) \
0N/A $(ROOTDIR)/fm/cpu \
1173N/A $(ROOTDIR)/fpu
0N/A
1173N/AROOTHDRS= $(HDRS:%=$(ROOTDIR)/%)
1173N/AROOTFPUHDRS= $(FPUHDRS:%=$(ROOTDIR)/fpu/%)
0N/AROOTFMCPUHDRS= $(FMCPUHDRS:%=$(ROOTDIR)/fm/cpu/%)
0N/A
0N/Afpu/%.check: fpu/%.h
0N/A $(DOT_H_CHECK)
0N/A
0N/Afm/cpu/%.check: fm/cpu/%.h
0N/A $(DOT_H_CHECK)
0N/A
0N/ACHECKHDRS= \
0N/A $(HDRS:%.h=%.check) \
0N/A $(FPUHDRS:%.h=fpu/%.check) \
0N/A $(FMCPUHDRS:%.h=fm/cpu/%.check)
0N/A
0N/A# install rules
0N/A$(ROOTDIR)/%: %
0N/A $(INS.file)
0N/A
0N/A$(ROOTDIR)/fpu/%: fpu/%
0N/A $(INS.file)
0N/A
0N/A$(ROOTDIR)/fm/cpu/%: fm/cpu/%
0N/A $(INS.file)
0N/A
0N/A.KEEP_STATE:
0N/A
0N/A.PARALLEL: $(CHECKHDRS) $(ROOTHDRS) $(ROOTFPUHDRS) $(ROOTFMCPUHDRS)
0N/A
0N/Ainstall_h: $(ROOTDIRS) .WAIT $(ROOTHDRS) $(ROOTFPUHDRS) $(ROOTFMCPUHDRS)
0N/A
0N/A$(ROOTDIRS):
0N/A $(INS.dir)
0N/A
0N/Acheck: $(CHECKHDRS)
0N/A