xref: /illumos-gate/usr/src/lib/scsi/plugins/scsi/engines/Makefile.engine (revision 5a0af8165ce9590e7a18f1ef4f9badc4dd72c6e6)
1#
2# CDDL HEADER START
3#
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.
7#
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.
12#
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]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26
27.KEEP_STATE:
28.SUFFIXES:
29
30include ../../../../../../../cmd/Makefile.cmd
31include ../../../../../Makefile.defs
32
33#
34# Set PROG and OBJS based on the values of MODULE and SRCS.  We expect that
35# these macros to be defined by the Makefile that is including this file.
36#
37PROG = $(MODULE:%=%.so)
38YOBJS = $(YSRCS:%.y=%.o)
39OBJS = $(YOBJS) $(SRCS:%.c=%.o)
40
41#
42# A module may set DMOD and DMOD_SRCS if it has a mdb proc module.
43# DMOD, if set, must match PROG above (for mdb autoloading) so it will
44# be built in a subdirectory.
45#
46ROOTDMOD = $(DMOD:%.so=$(ROOT)/usr/lib/mdb/proc/%.so)
47ROOTDMOD64 = $(DMOD:%.so=$(ROOT)/usr/lib/mdb/proc/$(MACH64)/%.so)
48DMODPROG = $(DMOD:%=dmod/%)
49DMOD_OBJS = $(DMOD_SRCS:%.c=%.o)
50
51ROOTPROG = $(ROOTPLUGINLIBDIR)/scsi/engines/$(PROG)
52ROOTPROG64 = $(ROOTPLUGINLIBDIR)/scsi/engines/$(MACH64)/$(PROG)
53
54APIMAP = ../../../../../libscsi/libscsi_api.map
55
56CSTD = $(CSTD_GNU99)
57CFLAGS += $(CTF_FLAGS) $(CCVERBOSE) $(XSTRCONST) $(CC_PICFLAGS)
58CFLAGS += $(GSHARED) $(XREGSFLAG)
59CFLAGS64 += $(CTF_FLAGS) $(CCVERBOSE) $(XSTRCONST) $(CC_PICFLAGS)
60CFLAGS64 += $(GSHARED) $(XREGSFLAG)
61CPPFLAGS += -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT
62CPPFLAGS += -I../../../../../libscsi/common
63$(NOT_RELEASE_BUILD)CPPFLAGS += -DDEBUG
64LDFLAGS += $(ZTEXT) $(ZIGNORE)
65
66$(PROG) := LDFLAGS += $(ZDEFS) -Wl,-M$(APIMAP)
67$(PROG) := LDLIBS += -lc
68
69$(DMODPROG) := LDFLAGS += $(ZNODEFS)
70