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]
22 # Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
23 # Copyright 2015 RackTop Systems.
29 include $(SRC)/cmd/Makefile.cmd
33 # Set PROG and OBJS based on the values of MODULE and SRCS. We expect that
34 # these macros to be defined by the Makefile that is including this file.
36 PROG = $(MODULE:%=%.so)
37 YOBJS = $(YSRCS:%.y=%.o)
38 OBJS = $(YOBJS) $(SRCS:%.c=%.o)
39 CONF = $(MODULE:%=%.conf)
42 # We may have sources from directories other than the current, but
43 # we build all objects in the current directory (not necessarily in the
44 # directory of its source).
45 SEDCMDLINE = echo $(OBJS) | sed 's!\.\./[a-z_/]*/!!g'
46 LINKOBJS = $(SEDCMDLINE:sh)
49 # A module may set DMOD and DMOD_SRCS if it has a mdb proc module.
50 # DMOD, if set, must match PROG above (for mdb autoloading) so it will
51 # be built in a subdirectory.
53 ROOTDMOD = $(DMOD:%.so=$(ROOT)/usr/lib/mdb/proc/%.so)
54 DMODPROG = $(DMOD:%=dmod/%)
55 DMOD_OBJS = $(DMOD_SRCS:%.c=%.o)
58 # Set ROOTPROG and ROOTCONF based on the values of MODULE, CLASS, and PLATFORMS
59 # We expect these macros to be defined by the Makefile that is including us.
61 common_ROOTPROG = $(ROOT)/usr/lib/fm/fmd/plugins/$(PROG)
62 arch_ROOTPROG = $(ROOT)/usr/platform/$(ARCH)/lib/fm/fmd/plugins/$(PROG)
63 plat_ROOTPROG = $(PLATFORMS:%=$(ROOT)/usr/platform/%/lib/fm/fmd/plugins/$(PROG))
64 ROOTPROG = $($(CLASS)_ROOTPROG)
66 common_ROOTCONF = $(ROOT)/usr/lib/fm/fmd/plugins/$(CONF)
67 arch_ROOTCONF = $(ROOT)/usr/platform/$(ARCH)/lib/fm/fmd/plugins/$(CONF)
68 plat_ROOTCONF = $(PLATFORMS:%=$(ROOT)/usr/platform/%/lib/fm/fmd/plugins/$(CONF))
69 ROOTCONF = $($(CLASS)_ROOTCONF)
72 LINTFILES = $(SRCS:%.c=%.ln)
74 DMODLINTTGT = $(DMOD:%=lint_dmod)
75 DMODLINTFILES = $(DMOD_SRCS:%.c=%.ln)
77 APIMAP = $(SRC)/cmd/fm/fmd/common/fmd_api.map
78 FMRIMAP = $(SRC)/cmd/fm/fmd/common/fmd_fmri.map
80 CFLAGS += $(CTF_FLAGS) $(CCVERBOSE) $(XSTRCONST) $(CC_PICFLAGS)
81 CFLAGS += -G $(XREGSFLAG)
83 CPPFLAGS += -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT
84 LDFLAGS += $(ZDEFS) $(ZTEXT) $(ZIGNORE)
86 MAPFILE-DMOD = $(SRC)/cmd/mdb/common/modules/conf/mapfile-extern
89 $(PROG) := LDFLAGS += -M$(APIMAP) -M$(FMRIMAP)
90 $(PROG) := LDLIBS += -lnvpair -lc
92 all: $(PROG) $(DMODPROG)
95 .PARALLEL: $(OBJS) $(LINTFILES) $(DMOD_OBJS) $(DMODLINTFILES)
97 $(PROG): $(OBJS) $(APIMAP)
98 $(LINK.c) $(LINKOBJS) -o $@ $(LDLIBS)
99 $(CTFMERGE) -L VERSION -o $@ $(LINKOBJS)
102 $(DMODPROG): $(DMOD_OBJS) $(MAPFILE-DMOD)
104 $(LINK.c) $(DMOD_OBJS) $(MAPFILE-DMOD:%=-M%) -o $@ $(LDLIBS) -lc
108 $(COMPILE.c) $< -o $(@F)
109 $(CTFCONVERT) $(CTFCVTFLAGS) $(@F)
112 $(RM) $(OBJS) $(DMOD_OBJS) $(LINTFILES) $(DMODLINTFILES) $(CLEANFILES) \
116 $(RM) $(PROG) $(DMODPROG)
119 $(LINT.c) -dirout=$(@D) -c $<
121 lint_prog: $(LINTFILES)
122 $(LINT) $(LINTFLAGS) $(LINTFILES) $(LDLIBS)
124 lint_dmod: $(DMODLINTFILES)
125 $(LINT) $(LINTFLAGS) $(DMODLINTFILES) $(LDLIBS)
127 lint: lint_prog $(DMODLINTTGT)
131 $(ROOTPROG): $$(@D) $(PROG)
132 $(RM) $@; $(INS) -s -m 0555 -f $(@D) $(PROG)
134 $(ROOTCONF): $$(@D) $(CONF)
135 $(RM) $@; $(INS) -s -m 0644 -f $(@D) $(CONF)
137 $(ROOTDMOD): $$(@D) $(DMODPROG)
138 $(RM) $@; $(INS) -s -m 0555 -f $(@D) $(DMODPROG)
140 install: $(ROOTPROG) $(ROOTCONF) $(ROOTDMOD)
142 include $(SRC)/cmd/fm/modules/Makefile.rootdirs