Makefile revision 2b24ab6b3865caeede9eeb9db6b83e1d89dcd1ea
0N/A#
0N/A# CDDL HEADER START
1276N/A#
0N/A# The contents of this file are subject to the terms of the
1276N/A# Common Development and Distribution License (the "License").
0N/A# You may not use this file except in compliance with the License.
0N/A#
919N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
919N/A# or http://www.opensolaris.org/os/licensing.
919N/A# See the License for the specific language governing permissions
919N/A# and limitations under the License.
919N/A#
919N/A# When distributing Covered Code, include this CDDL HEADER in each
919N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
919N/A# If applicable, add the following below this CDDL HEADER, with the
919N/A# fields enclosed by brackets "[]" replaced with your own identifying
919N/A# information: Portions Copyright [yyyy] [name of copyright owner]
919N/A#
919N/A# CDDL HEADER END
919N/A#
919N/A
919N/A#
919N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
919N/A# Use is subject to license terms.
0N/A#
0N/A
0N/APROG= zoneadm
156N/AMANIFEST= zones.xml resource-mgmt.xml
493N/ASVCMETHOD= svc-zones svc-resource-mgmt
0N/A
0N/Ainclude ../Makefile.cmd
1301N/A
0N/AROOTMANIFESTDIR= $(ROOTSVCSYSTEM)
911N/A
1301N/AOBJS= zoneadm.o zfs.o
1301N/ASRCS = $(OBJS:.o=.c)
1301N/APOFILE=zoneadm_all.po
911N/APOFILES= $(OBJS:%.o=%.po)
0N/A
1301N/ALDLIBS += -lzonecfg -lsocket -lgen -lpool -lzfs -luuid -lnvpair -lbrand -ldladm
0N/A
156N/A.KEEP_STATE:
156N/A
0N/Aall: $(PROG)
70N/A
1072N/A$(PROG): $(OBJS)
493N/A $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
156N/A $(POST_PROCESS)
1224N/A
1224N/Ainstall: all $(ROOTUSRSBINPROG) $(ROOTMANIFEST) $(ROOTSVCMETHOD)
0N/A
970N/Acheck: $(PROG).c $(CHKMANIFEST)
970N/A $(CSTYLE) -pP $(SRCS:%=%)
970N/A
0N/A$(POFILE): $(POFILES)
0N/A $(RM) $@
0N/A $(CAT) $(POFILES) > $@
965N/A
0N/Aclean:
156N/A $(RM) $(OBJS) $(POFILES)
173N/A
0N/Alint: lint_SRCS
970N/A
970N/Ainclude ../Makefile.targ
970N/A