xref: /titanic_50/usr/src/lib/brand/shared/Makefile (revision 80e2ca8596e3435bc3b76f3c597833ea0a87f85e)
1ead1f93eSLiane Praza#
2ead1f93eSLiane Praza# CDDL HEADER START
3ead1f93eSLiane Praza#
4ead1f93eSLiane Praza# The contents of this file are subject to the terms of the
5ead1f93eSLiane Praza# Common Development and Distribution License (the "License").
6ead1f93eSLiane Praza# You may not use this file except in compliance with the License.
7ead1f93eSLiane Praza#
8ead1f93eSLiane Praza# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9ead1f93eSLiane Praza# or http://www.opensolaris.org/os/licensing.
10ead1f93eSLiane Praza# See the License for the specific language governing permissions
11ead1f93eSLiane Praza# and limitations under the License.
12ead1f93eSLiane Praza#
13ead1f93eSLiane Praza# When distributing Covered Code, include this CDDL HEADER in each
14ead1f93eSLiane Praza# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15ead1f93eSLiane Praza# If applicable, add the following below this CDDL HEADER, with the
16ead1f93eSLiane Praza# fields enclosed by brackets "[]" replaced with your own identifying
17ead1f93eSLiane Praza# information: Portions Copyright [yyyy] [name of copyright owner]
18ead1f93eSLiane Praza#
19ead1f93eSLiane Praza# CDDL HEADER END
20ead1f93eSLiane Praza#
21ead1f93eSLiane Praza#
22*80e2ca85S# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
23ead1f93eSLiane Praza#
24ead1f93eSLiane Praza
25*80e2ca85Sdefault: all
26ead1f93eSLiane Praza
27*80e2ca85S# Build everything in parallel; use .WAIT for dependencies
28*80e2ca85S.PARALLEL:
29ead1f93eSLiane Praza
30*80e2ca85SSUBDIRS =	brand zone
31*80e2ca85SMSGSUBDIRS =	zone
32ead1f93eSLiane Praza
33*80e2ca85Sall :=		TARGET= all
34*80e2ca85Sinstall :=	TARGET= install
35*80e2ca85Sclean :=	TARGET= clean
36*80e2ca85Sclobber :=	TARGET= clobber
37*80e2ca85Slint :=		TARGET= lint
38*80e2ca85S_msg :=		TARGET= _msg
39ead1f93eSLiane Praza
40*80e2ca85S.KEEP_STATE:
41ead1f93eSLiane Praza
42*80e2ca85Sall install clean clobber lint: $(SUBDIRS)
43ead1f93eSLiane Praza
44*80e2ca85S_msg: $(MSGSUBDIRS)
45ead1f93eSLiane Praza
46*80e2ca85S$(SUBDIRS): FRC
47*80e2ca85S	@cd $@; pwd; $(MAKE) $(TARGET)
48ead1f93eSLiane Praza
49*80e2ca85SFRC:
50