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#
27*2a12f85aSJeremy Jones# Copyright (c) 2013 by Delphix. All rights reserved.
28*2a12f85aSJeremy Jones#
297c478bd9Sstevel@tonic-gate
307c478bd9Sstevel@tonic-gateMODULE = genunix.so
317c478bd9Sstevel@tonic-gateMDBTGT = kvm
327c478bd9Sstevel@tonic-gate
33ae115bc7Smrjinclude ../../../common/modules/genunix/Makefile.files
34ae115bc7Smrj
357c478bd9Sstevel@tonic-gateCOMMONSRCS = \
36ae115bc7Smrj	$(GENUNIX_SRCS)
377c478bd9Sstevel@tonic-gate
387c478bd9Sstevel@tonic-gateKMODSRCS = \
397c478bd9Sstevel@tonic-gate	$(COMMONSRCS)
407c478bd9Sstevel@tonic-gate
417c478bd9Sstevel@tonic-gateMODSRCS = \
427c478bd9Sstevel@tonic-gate	$(COMMONSRCS) \
437c478bd9Sstevel@tonic-gate	typegraph.c
447c478bd9Sstevel@tonic-gate
457c478bd9Sstevel@tonic-gate#
467c478bd9Sstevel@tonic-gate# This signals that $(KMODSRCS) != $(MODSRCS).  Typegraph is not usable under
477c478bd9Sstevel@tonic-gate# kmdb.  As such, we don't bother compiling it.
487c478bd9Sstevel@tonic-gateKMOD_SOURCES_DIFFERENT=$(POUND_SIGN)
497c478bd9Sstevel@tonic-gate
507c478bd9Sstevel@tonic-gateinclude ../../../../Makefile.cmd
517c478bd9Sstevel@tonic-gateinclude ../../../../Makefile.cmd.64
527c478bd9Sstevel@tonic-gateinclude ../../Makefile.amd64
537c478bd9Sstevel@tonic-gateinclude ../../../Makefile.module
547c478bd9Sstevel@tonic-gate
55*2a12f85aSJeremy Jonesdmod/$(MODULE) := LDLIBS += -lm -lproc
56087e1372Stomee
577c478bd9Sstevel@tonic-gate#
587c478bd9Sstevel@tonic-gate# We are not actually hardwiring some dependency on i86pc, we just need to
597c478bd9Sstevel@tonic-gate# include sys/param.h with _MACHDEP defined, and this forces the inclusion of
607c478bd9Sstevel@tonic-gate# machparam.h, even though we don't use anything there.  This is a temporary
617c478bd9Sstevel@tonic-gate# kludge until we invent -DDONTINCLUDEMACHPARAM or something.
627c478bd9Sstevel@tonic-gate#
637c478bd9Sstevel@tonic-gateCPPFLAGS += -I$(SRC)/uts/i86pc
64843e1988SjohnlevCPPFLAGS += -I$(SRC)/uts/i86xpv
657c478bd9Sstevel@tonic-gate
667c478bd9Sstevel@tonic-gate# Needed to include c2/audit.h (from cred.h)
677c478bd9Sstevel@tonic-gateCPPFLAGS += -I$(SRC)/uts/common
687c478bd9Sstevel@tonic-gate
697c478bd9Sstevel@tonic-gate# Needed to find include file mutex_impl.h
707c478bd9Sstevel@tonic-gateCPPFLAGS += -I$(SRC)/uts/intel
717014882cSRichard Lowe
727014882cSRichard LoweCERRWARN += -_gcc=-Wno-char-subscripts
737014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-label
747014882cSRichard LoweCERRWARN += -_gcc=-Wno-uninitialized
757014882cSRichard LoweCERRWARN += -_gcc=-Wno-parentheses
767014882cSRichard LoweCERRWARN += -_gcc=-Wno-type-limits
77*2a12f85aSJeremy Jones
78*2a12f85aSJeremy JonesLINTFLAGS64 += -erroff=E_EMPTY_TRANSLATION_UNIT
79