move 32-bit libs to lib/i386 subdirs & 64-bit libs to lib/
[unleashed.git] / usr / src / cmd / cmd-inet / lib / ipmgmtd / Makefile
blobd71910e822f730f2c817b7800e9f91f33837558b
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
19 # CDDL HEADER END
21 # Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
24 # Needed for ROOTFS_LIBDIR definition
25 include ../../../../lib/Makefile.lib
27 PROG= ipmgmtd
28 OBJS= ipmgmt_main.o ipmgmt_door.o ipmgmt_persist.o ipmgmt_util.o
29 SRCS= $(OBJS:.o=.c)
30 SVCMETHOD= net-ipmgmt
31 MANIFEST= network-ipmgmt.xml
32 CFGFILES= ipadm.conf
34 # Needed for ROOTETC definition
35 include ../../../Makefile.cmd
37 ROOTCFGDIR= $(ROOTETC)/ipadm
38 ROOTCFGFILES= $(CFGFILES:%=$(ROOTCFGDIR)/%)
39 ROOTMANIFESTDIR= $(ROOTSVCNETWORK)
41 CERRWARN += -Wno-switch
42 CERRWARN += -Wno-uninitialized
44 $(ROOTCFGFILES) := OWNER= ipadm
45 $(ROOTCFGFILES) := GROUP= sys
46 $(ROOTCFGFILES) := FILEMODE= 644
48 ROOTCMDDIR= $(ROOTFS_LIBDIR64)/inet
50 LDLIBS += -lipadm -lnvpair -lsecdb -lumem -lscf
53 # Instrument ipmgmtd with CTF data to ease debugging.
55 CTFCONVERT_HOOK = && $(CTFCONVERT_O)
56 CTFMERGE_HOOK = && $(CTFMERGE) -L VERSION -o $@ $(OBJS)
57 $(OBJS) := CFLAGS += $(CTF_FLAGS)
59 .KEEP_STATE:
61 .PARALLEL:
63 all: $(PROG)
65 $(PROG): $(OBJS)
66 $(LINK.c) -o $@ $(OBJS) $(LDLIBS) $(CTFMERGE_HOOK)
67 $(POST_PROCESS)
69 install: $(ROOTCMD) $(ROOTMANIFEST) $(ROOTSVCMETHOD) $(ROOTCFGDIR) \
70 $(ROOTCFGFILES)
72 check: $(SRCS) $(HEADERS) $(CHKMANIFEST)
73 $(CSTYLE) -cpP $(SRCS) $(HEADERS)
75 $(ROOTCMD): $(PROG)
77 clean:
78 $(RM) $(OBJS)
81 $(ROOTCFGDIR):
82 $(INS.dir)
84 $(ROOTCFGDIR)/%: $(ROOTCFGDIR) %
85 $(INS.file)
87 include ../../../Makefile.targ