xref: /titanic_41/usr/src/cmd/mdb/sparc/v9/libumem/Makefile (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
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, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26#ident	"%Z%%M%	%I%	%E% SMI"
27
28MODULE = libumem.so
29MDBTGT = proc
30
31MODSRCS_DIR = ../../../common/modules/genunix
32
33COMMONSRCS = \
34	libumem.c \
35	misc.c \
36	umem.c
37
38KMODSRCS = \
39	$(COMMONSRCS)
40
41MODSRCS = \
42	$(COMMONSRCS) \
43	kgrep.c \
44	leaky.c \
45	leaky_subr.c \
46	proc_kludges.c
47
48#
49# This signals that $(KMODSRCS) != $(MODSRCS).  There are certain features of
50# the libumem dmod, such as leak detection, that we cannot yet use in the kmod.
51# In most cases, the inability to use a given function is due to that function's
52# dependance on libproc interfaces - interfaces which are not present in kmdb.
53KMOD_SOURCES_DIFFERENT=$(POUND_SIGN)
54
55include ../../../../Makefile.cmd
56
57CPPFLAGS += -I$(SRC)/lib/libumem/common
58CPPFLAGS += -I$(MODSRCS_DIR)
59
60include ../../../../Makefile.cmd.64
61include ../../Makefile.sparcv9
62include ../../../Makefile.module
63
64%.o: $(MODSRCS_DIR)/%.c
65	$(COMPILE.c) $<
66	$(CTFCONVERT_O)
67
68%.ln: $(MODSRCS_DIR)/%.c
69	$(LINT.c) -c $<
70
71#
72# This module is somewhat unusual in that it is a proc-style dmod.  proc dmods
73# are not normally built both for mdb and kmdb.  These overrides build it as a
74# proc dmod and as a kvm kmod.
75TARGETS = $(TARGETS_proc) $(TARGETS_kvm_kmdb)
76ROOTTGTS = $(ROOTTGTS_proc)
77