xref: /titanic_52/usr/src/cmd/mdb/sparc/v9/genunix/Makefile (revision 74e20cfe817b82802b16fac8690dadcda76f54f5)
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#
24# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27#ident	"%Z%%M%	%I%	%E% SMI"
28
29MODULE = genunix.so
30MDBTGT = kvm
31
32COMMONSRCS = \
33	avl.c \
34	bio.c \
35	contract.c \
36	cpupart.c \
37	ctxop.c \
38	cyclic.c \
39	devinfo.c \
40	findstack.c \
41	fm.c \
42	genunix.c \
43	kgrep.c \
44	kmem.c \
45	ldi.c \
46	leaky.c \
47	leaky_subr.c \
48	lgrp.c \
49	list.c \
50	log.c \
51	mdi.c \
52	memory.c \
53	mmd.c \
54	modhash.c \
55	ndievents.c \
56	net.c \
57	nvpair.c \
58	rctl.c \
59	sobj.c \
60	streams.c \
61	sysevent.c \
62	thread.c \
63	tsd.c \
64	tsol.c \
65	vfs.c \
66	zone.c
67
68KMODSRCS = \
69	$(COMMONSRCS)
70
71MODSRCS = \
72	$(COMMONSRCS) \
73	typegraph.c
74
75#
76# This signals that $(KMODSRCS) != $(MODSRCS).  Typegraph is not usable under
77# kmdb.  As such, we don't bother compiling it.
78KMOD_SOURCES_DIFFERENT=$(POUND_SIGN)
79
80include ../../../../Makefile.cmd
81include ../../../../Makefile.cmd.64
82include ../../Makefile.sparcv9
83include ../../../Makefile.module
84
85#
86# We are not actually hardwiring some dependency on sun4u, we just need to
87# include sys/param.h with _MACHDEP defined, and this forces the inclusion of
88# machparam.h, even though we don't use anything there.  This is a temporary
89# kludge until we invent -DDONTINCLUDEMACHPARAM or something.
90#
91CPPFLAGS += -I$(SRC)/uts/sun4u
92
93# Needed to include c2/audit.h (from cred.h)
94CPPFLAGS += -I$(SRC)/uts/common
95# Needed to find include file mutex_impl.h
96CPPFLAGS += -I$(SRC)/uts/sparc/v9
97