xref: /illumos-gate/usr/src/uts/intel/audiohd/Makefile (revision 82d0151a507442720a3aea34c8925041894ab173)
1ae115bc7Smrj#
2ae115bc7Smrj# CDDL HEADER START
3ae115bc7Smrj#
4ae115bc7Smrj# The contents of this file are subject to the terms of the
5ae115bc7Smrj# Common Development and Distribution License (the "License").
6ae115bc7Smrj# You may not use this file except in compliance with the License.
7ae115bc7Smrj#
8ae115bc7Smrj# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9ae115bc7Smrj# or http://www.opensolaris.org/os/licensing.
10ae115bc7Smrj# See the License for the specific language governing permissions
11ae115bc7Smrj# and limitations under the License.
12ae115bc7Smrj#
13ae115bc7Smrj# When distributing Covered Code, include this CDDL HEADER in each
14ae115bc7Smrj# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15ae115bc7Smrj# If applicable, add the following below this CDDL HEADER, with the
16ae115bc7Smrj# fields enclosed by brackets "[]" replaced with your own identifying
17ae115bc7Smrj# information: Portions Copyright [yyyy] [name of copyright owner]
18ae115bc7Smrj#
19ae115bc7Smrj# CDDL HEADER END
20ae115bc7Smrj#
21ae115bc7Smrj#
22ea463888SZhao Edgar Liu - Sun Microsystems# Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
23ae115bc7Smrj#
24ae115bc7Smrj# uts/intel/audiohd/Makefile
25ae115bc7Smrj#
26ae115bc7Smrj#	This makefile drives the production of high definition audio
27ae115bc7Smrj#	driver (audiohd) kernel module.
28ae115bc7Smrj#
29ae115bc7Smrj#
30ae115bc7Smrj#	Path to the base of the uts directory tree (usually /usr/src/uts).
31ae115bc7Smrj#
32ae115bc7SmrjUTSBASE = ../..
33ae115bc7Smrj
34ae115bc7Smrj#
35ae115bc7Smrj#	Define the module and object file sets.
36ae115bc7Smrj#
37ae115bc7SmrjMODULE		= audiohd
38ae115bc7SmrjOBJECTS		= $(AUDIOHD_OBJS:%=$(OBJS_DIR)/%)
39ae115bc7SmrjROOTMODULE	= $(ROOT_DRV_DIR)/$(MODULE)
4088447a05SGarrett D'AmoreCONF_SRCDIR	= $(UTSBASE)/common/io/audio/drv/audiohd
41ae115bc7Smrj
42ae115bc7Smrj#
43ae115bc7Smrj#	Include common rules.
44ae115bc7Smrj#
45ae115bc7Smrjinclude $(UTSBASE)/intel/Makefile.intel
46ae115bc7Smrj
47ae115bc7Smrj#
480aaef2f5SRichard Lowe# For now, disable these warnings; maintainers should endeavor
490aaef2f5SRichard Lowe# to investigate and remove these for maximum coverage.
50ae115bc7Smrj# Please do not carry these forward to new Makefiles.
51ae115bc7Smrj#
520aaef2f5SRichard LoweCFLAGS		+= $(CCVERBOSE)
537014882cSRichard LoweCERRWARN	+= -_gcc=-Wno-parentheses
547014882cSRichard LoweCERRWARN	+= -_gcc=-Wno-switch
55d3b5f563SJohn LevonCERRWARN	+= $(CNOWARN_UNINIT)
567014882cSRichard Lowe
57*82d0151aSRichard LoweLDFLAGS		+= -Ndrv/audio
58ae115bc7Smrj
59ae115bc7Smrj#
60ae115bc7Smrj#	Define targets
61ae115bc7Smrj#
62ae115bc7SmrjALL_TARGET	= $(BINARY) $(SRC_CONFILE)
63ae115bc7SmrjINSTALL_TARGET	= $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
64ae115bc7Smrj
65ae115bc7Smrj#
66ae115bc7Smrj#	Default build targets.
67ae115bc7Smrj#
68ae115bc7Smrj.KEEP_STATE:
69ae115bc7Smrj
70ae115bc7Smrjdef:		$(DEF_DEPS)
71ae115bc7Smrj
72ae115bc7Smrjall:		$(ALL_DEPS)
73ae115bc7Smrj
74ae115bc7Smrjclean:		$(CLEAN_DEPS)
75ae115bc7Smrj
76ae115bc7Smrjclobber:	$(CLOBBER_DEPS)
77ae115bc7Smrj
78ae115bc7Smrjinstall:	$(INSTALL_DEPS)
79ae115bc7Smrj
80ae115bc7Smrj#
81ae115bc7Smrj#	Include common targets.
82ae115bc7Smrj#
83ae115bc7Smrjinclude $(UTSBASE)/intel/Makefile.targ
84