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