Cross Reference: /illumos-gate/usr/src/lib/brand/lx/zone/Makefile
Makefile revision 9acbbeaf2a1ffe5c14b244867d427714fab43c5c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
9f0c535f81304713568808c9ab2f05b75583fd16nilgun#
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# CDDL HEADER START
9f0c535f81304713568808c9ab2f05b75583fd16nilgun#
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# The contents of this file are subject to the terms of the
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# Common Development and Distribution License (the "License").
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# You may not use this file except in compliance with the License.
9f0c535f81304713568808c9ab2f05b75583fd16nilgun#
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# or http://www.opensolaris.org/os/licensing.
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# See the License for the specific language governing permissions
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# and limitations under the License.
9f0c535f81304713568808c9ab2f05b75583fd16nilgun#
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# When distributing Covered Code, include this CDDL HEADER in each
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
3f08db06526d6901aa08c110b5bc7dde6bc39905nd# If applicable, add the following below this CDDL HEADER, with the
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# fields enclosed by brackets "[]" replaced with your own identifying
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# information: Portions Copyright [yyyy] [name of copyright owner]
9f0c535f81304713568808c9ab2f05b75583fd16nilgun#
3f08db06526d6901aa08c110b5bc7dde6bc39905nd# CDDL HEADER END
9f0c535f81304713568808c9ab2f05b75583fd16nilgun#
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
befb6758d5618c60f29b19f9a7eb75ab993511dcjim#
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
f086b4b402fa9a2fefc7dda85de2a3cc1cd0a654rjung# Use is subject to license terms.
9f0c535f81304713568808c9ab2f05b75583fd16nilgun#
9f0c535f81304713568808c9ab2f05b75583fd16nilgun# ident "%Z%%M% %I% %E% SMI"
9f0c535f81304713568808c9ab2f05b75583fd16nilgun#
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilgunPROGS = lx_install lx_distro_install lx_init_zone
9f0c535f81304713568808c9ab2f05b75583fd16nilgunSUBDIRS = distros
9f0c535f81304713568808c9ab2f05b75583fd16nilgunXMLDOCS = config.xml platform.xml
9f0c535f81304713568808c9ab2f05b75583fd16nilgunTEMPLATES = SUNWlx.xml
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilgunall: $(PROGS)
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilguninclude $(SRC)/cmd/Makefile.cmd
9f0c535f81304713568808c9ab2f05b75583fd16nilguninclude ../Makefile.lx
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilgunall := TARGET= all
9f0c535f81304713568808c9ab2f05b75583fd16nilguninstall := TARGET= install
9f0c535f81304713568808c9ab2f05b75583fd16nilgunclobber := TARGET= clobber
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilgunPOFILES= $(PROGS:%=%.po)
9f0c535f81304713568808c9ab2f05b75583fd16nilgunPOFILE= lx_zone.po
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilgun$(POFILE): $(POFILES)
9f0c535f81304713568808c9ab2f05b75583fd16nilgun $(RM) $@
9f0c535f81304713568808c9ab2f05b75583fd16nilgun $(BUILDPO.pofiles)
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilgun_msg: $(MSGDOMAINPOFILE)
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilguninstall: $(PROGS) $(ROOTBRANDDIR) $(ROOTTEMPLATEDIR) $(ROOTXMLDOCS) \
9f0c535f81304713568808c9ab2f05b75583fd16nilgun $(ROOTTEMPLATES) $(ROOTPROGS) $(SUBDIRS)
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilgunlint:
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilgunclean:
9f0c535f81304713568808c9ab2f05b75583fd16nilgun -$(RM) $(PROGS)
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilgunclobber: clean $(SUBDIRS)
9f0c535f81304713568808c9ab2f05b75583fd16nilgun -$(RM) $(ROOTXMLDOCS) $(ROOTPROGS) $(ROOTTEMPLATES)
dfc5f686a6ac416a480f0281c9ff0a751013fcf2nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilgun$(SUBDIRS): FRC
9f0c535f81304713568808c9ab2f05b75583fd16nilgun @cd $@; pwd; $(MAKE) $(TARGET)
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilgunFRC:
9f0c535f81304713568808c9ab2f05b75583fd16nilgun
9f0c535f81304713568808c9ab2f05b75583fd16nilguninclude $(SRC)/Makefile.msg.targ
9f0c535f81304713568808c9ab2f05b75583fd16nilgun