xref: /illumos-gate/usr/src/uts/intel/intel_nb5000/Makefile (revision 82d0151a507442720a3aea34c8925041894ab173)
1e4b86885SCheng Sean Ye# CDDL HEADER START
2e4b86885SCheng Sean Ye#
3e4b86885SCheng Sean Ye# The contents of this file are subject to the terms of the
4e4b86885SCheng Sean Ye# Common Development and Distribution License (the "License").
5e4b86885SCheng Sean Ye# You may not use this file except in compliance with the License.
6e4b86885SCheng Sean Ye#
7e4b86885SCheng Sean Ye# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
8e4b86885SCheng Sean Ye# or http://www.opensolaris.org/os/licensing.
9e4b86885SCheng Sean Ye# See the License for the specific language governing permissions
10e4b86885SCheng Sean Ye# and limitations under the License.
11e4b86885SCheng Sean Ye#
12e4b86885SCheng Sean Ye# When distributing Covered Code, include this CDDL HEADER in each
13e4b86885SCheng Sean Ye# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
14e4b86885SCheng Sean Ye# If applicable, add the following below this CDDL HEADER, with the
15e4b86885SCheng Sean Ye# fields enclosed by brackets "[]" replaced with your own identifying
16e4b86885SCheng Sean Ye# information: Portions Copyright [yyyy] [name of copyright owner]
17e4b86885SCheng Sean Ye#
18e4b86885SCheng Sean Ye# CDDL HEADER END
19e4b86885SCheng Sean Ye#
20f899e573SVuong Nguyen# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
21e4b86885SCheng Sean Ye# Use is subject to license terms.
2289b43686SBayard Bell# Copyright (c) 2011 Bayard G. Bell. All rights reserved.
23e4b86885SCheng Sean Ye#
24b6b206fcSJohn Levon# Copyright (c) 2018, Joyent, Inc.
25e4b86885SCheng Sean Ye
26e4b86885SCheng Sean Ye#
27f899e573SVuong Nguyen# Intel 5000/5100/5400/7300 chipset memory controller hub (MCH) module
28f899e573SVuong Nguyen#
29f899e573SVuong Nguyen
30f899e573SVuong Nguyen#
31e4b86885SCheng Sean Ye#	Path to the base of the uts directory tree (usually /usr/src/uts).
32e4b86885SCheng Sean Ye#
33e4b86885SCheng Sean YeUTSBASE = ../..
34e4b86885SCheng Sean Ye
35e4b86885SCheng Sean Ye#
36e4b86885SCheng Sean Ye#       Define the module and object file sets.
37e4b86885SCheng Sean Ye#
38e4b86885SCheng Sean YeMODULE		= intel_nb5000
39e4b86885SCheng Sean Ye#
40e4b86885SCheng Sean YeROOTMODULE	= $(ROOT_DRV_DIR)/$(MODULE)
41e4b86885SCheng Sean YeSRCDIR		= $(UTSBASE)/intel/io/intel_nb5000
42e4b86885SCheng Sean YeCONF_SRCDIR	= $(UTSBASE)/intel/io/intel_nb5000
43e4b86885SCheng Sean Ye
44e4b86885SCheng Sean Ye#
45e4b86885SCheng Sean Ye#       Include common rules.
46e4b86885SCheng Sean Ye#
47e4b86885SCheng Sean Yeinclude ../Makefile.intel
48e4b86885SCheng Sean Ye
49f899e573SVuong NguyenOBJECTS		= $(INTEL_NB5000_OBJS:%=$(OBJS_DIR)/%)
50f899e573SVuong Nguyen
51f899e573SVuong Nguyen#
52e4b86885SCheng Sean Ye#       Define targets
53e4b86885SCheng Sean Ye#
54e4b86885SCheng Sean YeALL_TARGET      = $(BINARY)
55e4b86885SCheng Sean YeINSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
56e4b86885SCheng Sean Ye
57e4b86885SCheng Sean Ye#
5889b43686SBayard Bell# Depends on smbios
5989b43686SBayard Bell#
60*82d0151aSRichard LoweLDFLAGS         += -N drv/smbios
6189b43686SBayard Bell
627014882cSRichard LoweCERRWARN	+= -_gcc=-Wno-parentheses
63d3b5f563SJohn LevonCERRWARN	+= $(CNOWARN_UNINIT)
647014882cSRichard Lowe
65b6b206fcSJohn Levon# needs work
66b6b206fcSJohn LevonSMATCH=off
67b6b206fcSJohn Levon
6889b43686SBayard Bell#
69e4b86885SCheng Sean Ye#       Default build targets.
70e4b86885SCheng Sean Ye#
71e4b86885SCheng Sean Ye.KEEP_STATE:
72e4b86885SCheng Sean Ye
73e4b86885SCheng Sean Yedef:            $(DEF_DEPS)
74e4b86885SCheng Sean Ye
75e4b86885SCheng Sean Yeall:            $(ALL_DEPS)
76e4b86885SCheng Sean Ye
77e4b86885SCheng Sean Yeclean:          $(CLEAN_DEPS)
78e4b86885SCheng Sean Ye
79e4b86885SCheng Sean Yeclobber:        $(CLOBBER_DEPS)
80e4b86885SCheng Sean Ye
81e4b86885SCheng Sean Yeinstall:        $(INSTALL_DEPS)
82e4b86885SCheng Sean Ye
83e4b86885SCheng Sean Ye$(OBJECTS): $(OBJS_DIR) $(MCAMD_OFF_H)
84e4b86885SCheng Sean Ye
85e4b86885SCheng Sean Ye#
86e4b86885SCheng Sean Ye#       Include common targets.
87e4b86885SCheng Sean Ye#
88e4b86885SCheng Sean Yeinclude ../Makefile.targ
89