xref: /illumos-gate/usr/src/cmd/dlmgmtd/Makefile (revision 24fe0b3b)
1d62bc4baSyz#
2d62bc4baSyz# CDDL HEADER START
3d62bc4baSyz#
4d62bc4baSyz# The contents of this file are subject to the terms of the
5d62bc4baSyz# Common Development and Distribution License (the "License").
6d62bc4baSyz# You may not use this file except in compliance with the License.
7d62bc4baSyz#
8d62bc4baSyz# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9d62bc4baSyz# or http://www.opensolaris.org/os/licensing.
10d62bc4baSyz# See the License for the specific language governing permissions
11d62bc4baSyz# and limitations under the License.
12d62bc4baSyz#
13d62bc4baSyz# When distributing Covered Code, include this CDDL HEADER in each
14d62bc4baSyz# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15d62bc4baSyz# If applicable, add the following below this CDDL HEADER, with the
16d62bc4baSyz# fields enclosed by brackets "[]" replaced with your own identifying
17d62bc4baSyz# information: Portions Copyright [yyyy] [name of copyright owner]
18d62bc4baSyz#
19d62bc4baSyz# CDDL HEADER END
20d62bc4baSyz#
21d62bc4baSyz#
22*24fe0b3bSjmcp# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23d62bc4baSyz# Use is subject to license terms.
24d62bc4baSyz#
25d62bc4baSyz
26d62bc4baSyzPROG=		dlmgmtd
27d62bc4baSyzOBJS=		dlmgmt_main.o dlmgmt_door.o dlmgmt_util.o dlmgmt_db.o
28d62bc4baSyzSRCS=		$(OBJS:.o=.c)
29d62bc4baSyzSVCMETHOD=	svc-dlmgmtd
30d62bc4baSyzMANIFEST=	dlmgmt.xml
31d62bc4baSyzCFGFILES=	datalink.conf
32d62bc4baSyz
33d62bc4baSyzinclude ../Makefile.cmd
34d62bc4baSyz
35d62bc4baSyzROOTMANIFESTDIR=	$(ROOTSVCNETWORK)
36d62bc4baSyzROOTCFGDIR=		$(ROOTETC)/dladm
37d62bc4baSyzROOTCFGFILES=		$(CFGFILES:%=$(ROOTCFGDIR)/%)
38d62bc4baSyz
39d62bc4baSyz$(ROOTCFGDIR)/datalink.conf	:= FILEMODE= 644
40d62bc4baSyz
410dc974a9SCathy ZhouLDLIBS += -ldladm -ldlpi -lavl -lnvpair -lsysevent
42d62bc4baSyz
43d62bc4baSyz.KEEP_STATE:
44d62bc4baSyz
45b9e076dcSyzall: $(PROG)
46d62bc4baSyz
47d62bc4baSyz$(PROG): $(OBJS)
48d62bc4baSyz	$(LINK.c) -o $@ $(OBJS) $(LDLIBS)
49d62bc4baSyz	$(POST_PROCESS)
50d62bc4baSyz
51b9e076dcSyzinstall: all $(ROOTSBINPROG) $(ROOTMANIFEST) $(ROOTSVCMETHOD) $(ROOTCFGDIR) \
52b9e076dcSyz	$(ROOTCFGFILES)
53d62bc4baSyz
54d62bc4baSyzcheck:	$(CHKMANIFEST)
55d62bc4baSyz
56d62bc4baSyzclean:
57d62bc4baSyz	$(RM) $(OBJS)
58d62bc4baSyz
59d62bc4baSyzlint:	lint_SRCS
60d62bc4baSyz
61d62bc4baSyz$(ROOTCFGDIR):
62d62bc4baSyz	$(INS.dir)
63d62bc4baSyz
64d62bc4baSyz$(ROOTCFGDIR)/%: $(ROOTCFGDIR) %
65d62bc4baSyz	$(INS.file)
66d62bc4baSyz
67d62bc4baSyzinclude ../Makefile.targ
68