xref: /illumos-gate/usr/src/uts/intel/idm/Makefile (revision 82d0151a507442720a3aea34c8925041894ab173)
1a6d42e7dSPeter Dunlap#
2a6d42e7dSPeter Dunlap# CDDL HEADER START
3a6d42e7dSPeter Dunlap#
4a6d42e7dSPeter Dunlap# The contents of this file are subject to the terms of the
5a6d42e7dSPeter Dunlap# Common Development and Distribution License (the "License").
6a6d42e7dSPeter Dunlap# You may not use this file except in compliance with the License.
7a6d42e7dSPeter Dunlap#
8a6d42e7dSPeter Dunlap# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9a6d42e7dSPeter Dunlap# or http://www.opensolaris.org/os/licensing.
10a6d42e7dSPeter Dunlap# See the License for the specific language governing permissions
11a6d42e7dSPeter Dunlap# and limitations under the License.
12a6d42e7dSPeter Dunlap#
13a6d42e7dSPeter Dunlap# When distributing Covered Code, include this CDDL HEADER in each
14a6d42e7dSPeter Dunlap# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15a6d42e7dSPeter Dunlap# If applicable, add the following below this CDDL HEADER, with the
16a6d42e7dSPeter Dunlap# fields enclosed by brackets "[]" replaced with your own identifying
17a6d42e7dSPeter Dunlap# information: Portions Copyright [yyyy] [name of copyright owner]
18a6d42e7dSPeter Dunlap#
19a6d42e7dSPeter Dunlap# CDDL HEADER END
20a6d42e7dSPeter Dunlap#
21a6d42e7dSPeter Dunlap#
22a6d42e7dSPeter Dunlap# uts/intel/io/idm/Makefile
23a6d42e7dSPeter Dunlap#
24d4b0f847SJack Meng# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
25a6d42e7dSPeter Dunlap# Use is subject to license terms.
26a6d42e7dSPeter Dunlap#
27b6b206fcSJohn Levon# Copyright (c) 2018, Joyent, Inc.
28a6d42e7dSPeter Dunlap
29a6d42e7dSPeter Dunlap#
30a6d42e7dSPeter Dunlap#	Path to the base of the uts directory tree (usually /usr/src/uts).
31a6d42e7dSPeter Dunlap#
32a6d42e7dSPeter DunlapUTSBASE	= ../..
33a6d42e7dSPeter Dunlap
34a6d42e7dSPeter Dunlap#
35a6d42e7dSPeter Dunlap#	Define the module and object file sets.
36a6d42e7dSPeter Dunlap#
37a6d42e7dSPeter DunlapMODULE		= idm
38a6d42e7dSPeter DunlapOBJECTS		= $(IDM_OBJS:%=$(OBJS_DIR)/%)
39a6d42e7dSPeter DunlapROOTMODULE	= $(ROOT_MISC_DIR)/$(MODULE)
40a6d42e7dSPeter Dunlap
41a6d42e7dSPeter Dunlap#
42a6d42e7dSPeter Dunlap#	Include common rules.
43a6d42e7dSPeter Dunlap#
44a6d42e7dSPeter Dunlapinclude $(UTSBASE)/intel/Makefile.intel
45a6d42e7dSPeter Dunlap
46a6d42e7dSPeter Dunlap#
47a6d42e7dSPeter Dunlap#	Define targets
48a6d42e7dSPeter Dunlap#
49a6d42e7dSPeter DunlapALL_TARGET	= $(BINARY)
50a6d42e7dSPeter DunlapINSTALL_TARGET	= $(BINARY) $(ROOTMODULE)
51a6d42e7dSPeter Dunlap
52a6d42e7dSPeter Dunlap#
53a6d42e7dSPeter Dunlap#	Overrides.
54a6d42e7dSPeter Dunlap#
55a6d42e7dSPeter DunlapDEBUG_FLGS	=
56a6d42e7dSPeter DunlapDEBUG_DEFS	+= $(DEBUG_FLGS)
57*82d0151aSRichard LoweLDFLAGS		+= -Nfs/sockfs -Nmisc/ksocket
58a6d42e7dSPeter Dunlap
597014882cSRichard LoweCERRWARN	+= -_gcc=-Wno-switch
607014882cSRichard LoweCERRWARN	+= -_gcc=-Wno-parentheses
61d3b5f563SJohn LevonCERRWARN	+= $(CNOWARN_UNINIT)
627014882cSRichard Lowe
63b6b206fcSJohn Levon# needs work
64b6b206fcSJohn LevonSMATCH=off
65b6b206fcSJohn Levon
66d4b0f847SJack Meng#	Include
67d4b0f847SJack MengINC_PATH	+= -I$(SRC)/common/hdcrc
68d4b0f847SJack Meng
69a6d42e7dSPeter Dunlap#
70a6d42e7dSPeter Dunlap#	Default build targets.
71a6d42e7dSPeter Dunlap#
72a6d42e7dSPeter Dunlap.KEEP_STATE:
73a6d42e7dSPeter Dunlap
74a6d42e7dSPeter Dunlapdef:		$(DEF_DEPS)
75a6d42e7dSPeter Dunlap
76a6d42e7dSPeter Dunlapall:		$(ALL_DEPS)
77a6d42e7dSPeter Dunlap
78a6d42e7dSPeter Dunlapclean:		$(CLEAN_DEPS)
79a6d42e7dSPeter Dunlap
80a6d42e7dSPeter Dunlapclobber:	$(CLOBBER_DEPS)
81a6d42e7dSPeter Dunlap
82a6d42e7dSPeter Dunlapinstall:	$(INSTALL_DEPS)
83a6d42e7dSPeter Dunlap
84a6d42e7dSPeter Dunlap#
85a6d42e7dSPeter Dunlap#	Include common targets.
86a6d42e7dSPeter Dunlap#
87a6d42e7dSPeter Dunlapinclude $(UTSBASE)/intel/Makefile.targ
88