17c478bd9Sstevel@tonic-gate#
27c478bd9Sstevel@tonic-gate# CDDL HEADER START
37c478bd9Sstevel@tonic-gate#
47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
545916cd2Sjpk# Common Development and Distribution License (the "License").
645916cd2Sjpk# You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate#
87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate# and limitations under the License.
127c478bd9Sstevel@tonic-gate#
137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate#
197c478bd9Sstevel@tonic-gate# CDDL HEADER END
2045916cd2Sjpk
2145916cd2Sjpk
227c478bd9Sstevel@tonic-gate#
237c478bd9Sstevel@tonic-gate#
24fb2f18f8Sesaxe# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
257c478bd9Sstevel@tonic-gate# Use is subject to license terms.
267c478bd9Sstevel@tonic-gate#
277c478bd9Sstevel@tonic-gate
287c478bd9Sstevel@tonic-gateMODULE = genunix.so
297c478bd9Sstevel@tonic-gateMDBTGT = kvm
307c478bd9Sstevel@tonic-gate
31ae115bc7Smrjinclude ../../../common/modules/genunix/Makefile.files
32ae115bc7Smrj
337c478bd9Sstevel@tonic-gateCOMMONSRCS = \
34ae115bc7Smrj	$(GENUNIX_SRCS)
357c478bd9Sstevel@tonic-gate
367c478bd9Sstevel@tonic-gateKMODSRCS = \
377c478bd9Sstevel@tonic-gate	$(COMMONSRCS)
387c478bd9Sstevel@tonic-gate
397c478bd9Sstevel@tonic-gateMODSRCS = \
407c478bd9Sstevel@tonic-gate	$(COMMONSRCS) \
417c478bd9Sstevel@tonic-gate	typegraph.c
427c478bd9Sstevel@tonic-gate
437c478bd9Sstevel@tonic-gate#
447c478bd9Sstevel@tonic-gate# This signals that $(KMODSRCS) != $(MODSRCS).  Typegraph is not usable under
457c478bd9Sstevel@tonic-gate# kmdb.  As such, we don't bother compiling it.
467c478bd9Sstevel@tonic-gateKMOD_SOURCES_DIFFERENT=$(POUND_SIGN)
477c478bd9Sstevel@tonic-gate
487c478bd9Sstevel@tonic-gateinclude ../../../../Makefile.cmd
497c478bd9Sstevel@tonic-gateinclude ../../../../Makefile.cmd.64
507c478bd9Sstevel@tonic-gateinclude ../../Makefile.amd64
517c478bd9Sstevel@tonic-gateinclude ../../../Makefile.module
527c478bd9Sstevel@tonic-gate
53087e1372Stomeedmod/$(MODULE) := LDLIBS += -lm
54087e1372Stomee
557c478bd9Sstevel@tonic-gate#
567c478bd9Sstevel@tonic-gate# We are not actually hardwiring some dependency on i86pc, we just need to
577c478bd9Sstevel@tonic-gate# include sys/param.h with _MACHDEP defined, and this forces the inclusion of
587c478bd9Sstevel@tonic-gate# machparam.h, even though we don't use anything there.  This is a temporary
597c478bd9Sstevel@tonic-gate# kludge until we invent -DDONTINCLUDEMACHPARAM or something.
607c478bd9Sstevel@tonic-gate#
617c478bd9Sstevel@tonic-gateCPPFLAGS += -I$(SRC)/uts/i86pc
62843e1988SjohnlevCPPFLAGS += -I$(SRC)/uts/i86xpv
637c478bd9Sstevel@tonic-gate
647c478bd9Sstevel@tonic-gate# Needed to include c2/audit.h (from cred.h)
657c478bd9Sstevel@tonic-gateCPPFLAGS += -I$(SRC)/uts/common
667c478bd9Sstevel@tonic-gate
677c478bd9Sstevel@tonic-gate# Needed to find include file mutex_impl.h
687c478bd9Sstevel@tonic-gateCPPFLAGS += -I$(SRC)/uts/intel
69*7014882cSRichard Lowe
70*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-char-subscripts
71*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-label
72*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-uninitialized
73*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-parentheses
74*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-type-limits
75