Makefile revision 417d1856ebed05106797cf405cced3e5c0259545
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# CDDL HEADER START
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# The contents of this file are subject to the terms of the
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# Common Development and Distribution License (the "License").
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# You may not use this file except in compliance with the License.
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# or http://www.opensolaris.org/os/licensing.
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# See the License for the specific language governing permissions
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# and limitations under the License.
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# When distributing Covered Code, include this CDDL HEADER in each
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# If applicable, add the following below this CDDL HEADER, with the
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# fields enclosed by brackets "[]" replaced with your own identifying
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# information: Portions Copyright [yyyy] [name of copyright owner]
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# CDDL HEADER END
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# Use is subject to license terms.
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoinclude $(SRC)/lib/Makefile.lib
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoinclude ../Makefile.defs
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoHDRS =
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoHDRDIR = common
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoSUBDIRS = $(MACH)
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#$(BUILD64)SUBDIRS += $(MACH64)
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoall := TARGET = all
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoclean := TARGET = clean
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoclobber := TARGET = clobber
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoinstall := TARGET = install
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicolint := TARGET = lint
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico.KEEP_STATE:
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoall clean clobber lint: $(SUBDIRS)
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoinstall: $(ROOTMMSDMLIBDIR) $(SUBDIRS)
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoinstall_h:
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicocheck:
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico$(SUBDIRS): FRC
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico @cd $@; pwd; $(MAKE) $(TARGET)
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoFRC:
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoinclude ../Makefile.rootdirs
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoinclude $(SRC)/lib/Makefile.targ
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico