199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome# CDDL HEADER START
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome# The contents of this file are subject to the terms of the
199767f8919635c4928607450d9e0abb932109ceToomas Soome# Common Development and Distribution License (the "License").
199767f8919635c4928607450d9e0abb932109ceToomas Soome# You may not use this file except in compliance with the License.
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
199767f8919635c4928607450d9e0abb932109ceToomas Soome# or http://www.opensolaris.org/os/licensing.
199767f8919635c4928607450d9e0abb932109ceToomas Soome# See the License for the specific language governing permissions
199767f8919635c4928607450d9e0abb932109ceToomas Soome# and limitations under the License.
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome# When distributing Covered Code, include this CDDL HEADER in each
199767f8919635c4928607450d9e0abb932109ceToomas Soome# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
199767f8919635c4928607450d9e0abb932109ceToomas Soome# If applicable, add the following below this CDDL HEADER, with the
199767f8919635c4928607450d9e0abb932109ceToomas Soome# fields enclosed by brackets "[]" replaced with your own identifying
199767f8919635c4928607450d9e0abb932109ceToomas Soome# information: Portions Copyright [yyyy] [name of copyright owner]
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome# CDDL HEADER END
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome# Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomeinclude ../../Makefile.lib
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome# This library must install in /lib since it is a dependency of
199767f8919635c4928607450d9e0abb932109ceToomas Soome# svc.startd and may be required in early boot. Thus we cannot
199767f8919635c4928607450d9e0abb932109ceToomas Soome# include ../Makefile.lib - instead we set ROOTFMHDRDIR and
199767f8919635c4928607450d9e0abb932109ceToomas Soome# ROOTFMHDRS and redefine ROOTLIBDIR and ROOTLIBDIR64 accordingly
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas SoomeROOTFMHDRDIR = $(ROOTHDRDIR)/fm
199767f8919635c4928607450d9e0abb932109ceToomas SoomeROOTFMHDRS = $(FMHDRS:%=$(ROOTFMHDRDIR)/%)
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas SoomeROOTLIBDIR= $(ROOTFS_LIBDIR)/fm
199767f8919635c4928607450d9e0abb932109ceToomas SoomeROOTLIBDIR64= $(ROOTFS_LIBDIR)/fm/$(MACH64)
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas SoomeFMHDRS = libfmevent.h libfmevent_ruleset.h
199767f8919635c4928607450d9e0abb932109ceToomas SoomeHDRDIR = common
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas SoomeSUBDIRS = $(MACH)
199767f8919635c4928607450d9e0abb932109ceToomas Soome$(BUILD64)SUBDIRS += $(MACH64)
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomeall := TARGET = all
199767f8919635c4928607450d9e0abb932109ceToomas Soomeclean := TARGET = clean
199767f8919635c4928607450d9e0abb932109ceToomas Soomeclobber := TARGET = clobber
199767f8919635c4928607450d9e0abb932109ceToomas Soomeinstall := TARGET = install
199767f8919635c4928607450d9e0abb932109ceToomas Soomelint := TARGET = lint
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome.KEEP_STATE:
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomeall clean clobber lint: $(SUBDIRS)
199767f8919635c4928607450d9e0abb932109ceToomas Soome
install: install_h .WAIT $(SUBDIRS)
install_h: $(ROOTFMHDRS)
check: $(CHECKHDRS)
$(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
FRC:
include ../../Makefile.targ
include ../Makefile.targ