xref: /titanic_44/usr/src/uts/intel/drm/Makefile (revision 7014882c6a3672fd0e5d60200af8643ae53c5928)
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# uts/intel/drm/Makefile
22ae115bc7Smrj#
23d0538f66Scg149915# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24ae115bc7Smrj# Use is subject to license terms.
25ae115bc7Smrj#
26*7014882cSRichard Lowe
27ae115bc7Smrj#
28ae115bc7Smrj#	This makefile drives the production of the DRM (Direct Rendering
29ae115bc7Smrj#	Manager) common misc module.
30ae115bc7Smrj#
31ae115bc7Smrj#	Path to the base of the uts directory tree (usually /usr/src/uts).
32ae115bc7Smrj#
33ae115bc7SmrjUTSBASE	= ../..
34ae115bc7Smrj
35ae115bc7Smrj#
36ae115bc7Smrj#	Define the module and object file sets.
37ae115bc7Smrj#
38ae115bc7SmrjMODULE		= drm
39ae115bc7SmrjOBJECTS		= $(DRM_OBJS:%=$(OBJS_DIR)/%)
40ae115bc7SmrjLINTS		= $(DRM_OBJS:%.o=$(LINTS_DIR)/%.ln)
41ae115bc7SmrjROOTMODULE	= $(ROOT_MISC_DIR)/$(MODULE)
42d0538f66Scg149915DRM_SRC		= $(UTSBASE)/i86pc/io/drm
43d0538f66Scg149915GFX_DIR		= $(UTSBASE)/i86pc/io/gfx_private
44d0538f66Scg149915
45d0538f66Scg149915INC_PATH	+= -I$(DRM_SRC) -I$(GFX_DIR)
46d0538f66Scg149915
47d0538f66Scg149915# Dependency
48d0538f66Scg149915LDFLAGS		+= -dy -Nmisc/agpmaster -Nmisc/gfx_private
49ae115bc7Smrj
50ae115bc7Smrj#
51ae115bc7Smrj#	Include common rules.
52ae115bc7Smrj#
53ae115bc7Smrjinclude $(UTSBASE)/intel/Makefile.intel
54ae115bc7Smrj
55*7014882cSRichard LoweCERRWARN	+= -_gcc=-Wno-parentheses
56*7014882cSRichard LoweCERRWARN	+= -_gcc=-Wno-uninitialized
57*7014882cSRichard LoweCERRWARN	+= -_gcc=-Wno-unused-variable
58*7014882cSRichard Lowe
59ae115bc7Smrj#
60ae115bc7Smrj#	Define targets
61ae115bc7Smrj#
62ae115bc7SmrjALL_TARGET	= $(BINARY)
63ae115bc7SmrjLINT_TARGET	= $(MODULE).lint
64ae115bc7SmrjINSTALL_TARGET	= $(BINARY) $(ROOTMODULE)
65ae115bc7Smrj
66ae115bc7Smrj#
67ae115bc7Smrj#	Default build targets.
68ae115bc7Smrj#
69ae115bc7Smrj.KEEP_STATE:
70ae115bc7Smrj
71ae115bc7Smrjdef:		$(DEF_DEPS)
72ae115bc7Smrj
73ae115bc7Smrjall:		$(ALL_DEPS)
74ae115bc7Smrj
75ae115bc7Smrjclean:		$(CLEAN_DEPS)
76ae115bc7Smrj
77ae115bc7Smrjclobber:	$(CLOBBER_DEPS)
78ae115bc7Smrj
79ae115bc7Smrjlint:		$(LINT_DEPS)
80ae115bc7Smrj
81ae115bc7Smrjmodlintlib:	$(MODLINTLIB_DEPS)
82ae115bc7Smrj
83ae115bc7Smrjclean.lint:	$(CLEAN_LINT_DEPS)
84ae115bc7Smrj
85ae115bc7Smrjinstall:	$(INSTALL_DEPS)
86ae115bc7Smrj
87ae115bc7Smrj#
88ae115bc7Smrj#	Include common targets.
89ae115bc7Smrj#
90ae115bc7Smrjinclude $(UTSBASE)/intel/Makefile.targ
91