xref: /illumos-gate/usr/src/lib/brand/Makefile (revision 9acbbeaf)
1*9acbbeafSnn#
2*9acbbeafSnn# CDDL HEADER START
3*9acbbeafSnn#
4*9acbbeafSnn# The contents of this file are subject to the terms of the
5*9acbbeafSnn# Common Development and Distribution License (the "License").
6*9acbbeafSnn# You may not use this file except in compliance with the License.
7*9acbbeafSnn#
8*9acbbeafSnn# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*9acbbeafSnn# or http://www.opensolaris.org/os/licensing.
10*9acbbeafSnn# See the License for the specific language governing permissions
11*9acbbeafSnn# and limitations under the License.
12*9acbbeafSnn#
13*9acbbeafSnn# When distributing Covered Code, include this CDDL HEADER in each
14*9acbbeafSnn# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*9acbbeafSnn# If applicable, add the following below this CDDL HEADER, with the
16*9acbbeafSnn# fields enclosed by brackets "[]" replaced with your own identifying
17*9acbbeafSnn# information: Portions Copyright [yyyy] [name of copyright owner]
18*9acbbeafSnn#
19*9acbbeafSnn# CDDL HEADER END
20*9acbbeafSnn#
21*9acbbeafSnn#
22*9acbbeafSnn# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23*9acbbeafSnn# Use is subject to license terms.
24*9acbbeafSnn#
25*9acbbeafSnn# ident	"%Z%%M%	%I%	%E% SMI"
26*9acbbeafSnn#
27*9acbbeafSnn# lib/brand/Makefile
28*9acbbeafSnn#
29*9acbbeafSnn# include global definitions
30*9acbbeafSnninclude ../../Makefile.master
31*9acbbeafSnn
32*9acbbeafSnn#
33*9acbbeafSnn# Build everything in parallel; use .WAIT for dependencies
34*9acbbeafSnn.PARALLEL:
35*9acbbeafSnn
36*9acbbeafSnni386_SUBDIRS= lx
37*9acbbeafSnni386_MSGSUBDIRS= lx
38*9acbbeafSnn
39*9acbbeafSnnSUBDIRS= sn1 native $($(MACH)_SUBDIRS)
40*9acbbeafSnnMSGSUBDIRS= $($(MACH)_MSGSUBDIRS)
41*9acbbeafSnn
42*9acbbeafSnnall :=		TARGET= all
43*9acbbeafSnninstall :=	TARGET= install
44*9acbbeafSnnclean :=	TARGET= clean
45*9acbbeafSnnclobber :=	TARGET= clobber
46*9acbbeafSnnlint :=		TARGET= lint
47*9acbbeafSnn_msg :=		TARGET= _msg
48*9acbbeafSnn
49*9acbbeafSnn.KEEP_STATE:
50*9acbbeafSnn
51*9acbbeafSnnall install clean clobber lint: $(SUBDIRS)
52*9acbbeafSnn
53*9acbbeafSnn_msg: $(MSGSUBDIRS)
54*9acbbeafSnn
55*9acbbeafSnn$(SUBDIRS): FRC
56*9acbbeafSnn	@cd $@; pwd; $(MAKE) $(TARGET)
57*9acbbeafSnn
58*9acbbeafSnnFRC:
59