xref: /illumos-gate/usr/src/cmd/dlmgmtd/Makefile (revision 7014882c)
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#
2224fe0b3bSjmcp# 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
412b24ab6bSSebastien RoyLDLIBS += -ldladm -ldlpi -lavl -lnvpair -lsysevent -lcontract
422b24ab6bSSebastien Roy
43*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-label
44*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-uninitialized
45*7014882cSRichard Lowe
462b24ab6bSSebastien Roy#
472b24ab6bSSebastien Roy# Instrument dlmgmtd with CTF data to ease debugging.
482b24ab6bSSebastien Roy#
492b24ab6bSSebastien RoyCTFCONVERT_HOOK = && $(CTFCONVERT_O)
502b24ab6bSSebastien RoyCTFMERGE_HOOK = && $(CTFMERGE) -L VERSION -o $@ $(OBJS)
512b24ab6bSSebastien Roy$(OBJS) := CFLAGS += $(CTF_FLAGS)
522b24ab6bSSebastien Roy
53d62bc4baSyz
54d62bc4baSyz.KEEP_STATE:
55d62bc4baSyz
56b9e076dcSyzall: $(PROG)
57d62bc4baSyz
58d62bc4baSyz$(PROG): $(OBJS)
592b24ab6bSSebastien Roy	$(LINK.c) -o $@ $(OBJS) $(LDLIBS) $(CTFMERGE_HOOK)
60d62bc4baSyz	$(POST_PROCESS)
61d62bc4baSyz
62b9e076dcSyzinstall: all $(ROOTSBINPROG) $(ROOTMANIFEST) $(ROOTSVCMETHOD) $(ROOTCFGDIR) \
63b9e076dcSyz	$(ROOTCFGFILES)
64d62bc4baSyz
65d62bc4baSyzcheck:	$(CHKMANIFEST)
66d62bc4baSyz
67d62bc4baSyzclean:
68d62bc4baSyz	$(RM) $(OBJS)
69d62bc4baSyz
70d62bc4baSyzlint:	lint_SRCS
71d62bc4baSyz
72d62bc4baSyz$(ROOTCFGDIR):
73d62bc4baSyz	$(INS.dir)
74d62bc4baSyz
75d62bc4baSyz$(ROOTCFGDIR)/%: $(ROOTCFGDIR) %
76d62bc4baSyz	$(INS.file)
77d62bc4baSyz
78d62bc4baSyzinclude ../Makefile.targ
79