Makefile revision 48bc00d6814e04ff3edb32cafe7d1bc580baff68
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore#
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# CDDL HEADER START
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore#
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# The contents of this file are subject to the terms of the
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# Common Development and Distribution License (the "License").
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# You may not use this file except in compliance with the License.
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore#
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# or http://www.opensolaris.org/os/licensing.
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# See the License for the specific language governing permissions
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# and limitations under the License.
a9478106a12424322498e53cf7cd75bd8a4d6004Yuri Pankov#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe# When distributing Covered Code, include this CDDL HEADER in each
b89e420ae1290e425c29db875ec0c0546006eec7Garrett D'Amore# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
a6ae009119d792a981d8b7153f8cb3851fe04ebbRobert Mustacchi# If applicable, add the following below this CDDL HEADER, with the
cfc3b49fd53fba13be205e2206e0ea3b36f5f2c7Yuri Pankov# fields enclosed by brackets "[]" replaced with your own identifying
f73e0305a745f17c6a584c4470f99ea1e023657fHans Rosenfeld# information: Portions Copyright [yyyy] [name of copyright owner]
a9478106a12424322498e53cf7cd75bd8a4d6004Yuri Pankov#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe# CDDL HEADER END
a9478106a12424322498e53cf7cd75bd8a4d6004Yuri Pankov#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
a9478106a12424322498e53cf7cd75bd8a4d6004Yuri Pankov#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
a9478106a12424322498e53cf7cd75bd8a4d6004Yuri Pankov# Use is subject to license terms.
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweUTSBASE = ../../..
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe# include global definitions
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Loweinclude ../Makefile.sunfire
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe# Override defaults.
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweFILEMODE = 644
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweHDRS= ac.h environ.h fhc.h simmstat.h sysctrl.h sram.h
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweROOTHDRS= $(HDRS:%=$(USR_SUNFIRE_ISYS_DIR)/%)
fa9922c2be34868be01989cef133828185b5c0bcRobert Mustacchi
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweROOTDIR= $(ROOT)/usr/share/src
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweROOTDIRS= $(ROOTDIR)/uts $(ROOTDIR)/uts/$(PLATFORM)
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweCHECKHDRS= $(HDRS:%.h=%.check)
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe.KEEP_STATE:
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe.PARALLEL: $(CHECKHDRS) $(ROOTHDRS)
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Loweinstall_h: $(ROOTDIRS) .WAIT $(ROOTHDRS) $(ROOTLINK)
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowecheck: $(CHECKHDRS)
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe# install rules
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe$(USR_SUNFIRE_ISYS_DIR)/%: % $(USR_SUNFIRE_ISYS_DIR)
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe $(INS.file)
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe$(ROOTDIRS):
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe $(INS.dir)
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
ebf4a993df0df43f7a5f7a6e512d1df78b9875c0Garrett D'AmoreFRC:
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Loweinclude ../Makefile.targ
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe