Makefile revision b819cea2f73f98c5662230cc9affc8cc84f77fcf
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# CDDL HEADER START
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# The contents of this file are subject to the terms of the
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# Common Development and Distribution License, Version 1.0 only
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# (the "License"). You may not use this file except in compliance
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# with the License.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# or http://www.opensolaris.org/os/licensing.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# See the License for the specific language governing permissions
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# and limitations under the License.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# When distributing Covered Code, include this CDDL HEADER in each
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# If applicable, add the following below this CDDL HEADER, with the
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# fields enclosed by brackets "[]" replaced with your own identifying
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# information: Portions Copyright [yyyy] [name of copyright owner]
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# CDDL HEADER END
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# Use is subject to license terms.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync# Copyright 2013 Nexenta Systems, Inc. All rights reserved.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncinclude ../Makefile.lib
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncHDRS= fakekernel.h
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncHDRDIR= common
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncROOTHDRDIR= $(ROOT)/usr/include/libfakekernel
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncROOTHDRS= $(HDRS:%=$(ROOTHDRDIR)/%)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncSUBDIRS = $(MACH)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync$(BUILD64)SUBDIRS += $(MACH64)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncall := TARGET= all
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncclean := TARGET= clean
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncclobber := TARGET= clobber
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncinstall := TARGET= install
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsynclint := TARGET= lint
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync.KEEP_STATE:
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncall clean clobber install lint: $(SUBDIRS)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncinstall_h: $(ROOTHDRDIR) $(ROOTHDRS)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsynccheck: $(CHECKHDRS)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync$(ROOTHDRDIR)/%: $(HDRDIR)/%
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync $(INS.file)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync$(ROOTHDRDIR):
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync $(INS.dir)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync$(MACH) $(MACH64): FRC
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync @cd $@; pwd; $(MAKE) $(TARGET)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncFRC:
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync