xref: /illumos-gate/usr/src/uts/intel/fd/Makefile (revision d3b5f56344d8bfcdd6cfb82446af0e5e55ad9ebe)
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#
22ae115bc7Smrj# uts/intel/fd/Makefile
23ae115bc7Smrj#
24ae115bc7Smrj# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
25ae115bc7Smrj# Use is subject to license terms.
26ae115bc7Smrj#
27b6b206fcSJohn Levon# Copyright (c) 2018, Joyent, Inc.
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		= fd
38ae115bc7SmrjOBJECTS		= $(FD_OBJS:%=$(OBJS_DIR)/%)
39ae115bc7SmrjLINTS		= $(FD_OBJS:%.o=$(LINTS_DIR)/%.ln)
40ae115bc7SmrjROOTMODULE	= $(ROOT_DRV_DIR)/$(MODULE)
41ae115bc7SmrjCONF_SRCDIR	= $(UTSBASE)/intel/io
42ae115bc7Smrj
43ae115bc7Smrj#
44ae115bc7Smrj#	Include common rules.
45ae115bc7Smrj#
46ae115bc7Smrjinclude $(UTSBASE)/intel/Makefile.intel
47ae115bc7Smrj
48ae115bc7Smrj#
49ae115bc7Smrj#	Define targets
50ae115bc7Smrj#
51ae115bc7SmrjALL_TARGET	= $(BINARY) $(CONFMOD)
52ae115bc7SmrjLINT_TARGET	= $(MODULE).lint
53ae115bc7SmrjINSTALL_TARGET	= $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
54ae115bc7Smrj
55ae115bc7Smrj#
56ae115bc7Smrj#	Overrides.
57ae115bc7Smrj#
58ae115bc7Smrj
59ae115bc7Smrj#
60ae115bc7Smrj# For now, disable these lint checks; maintainers should endeavor
61ae115bc7Smrj# to investigate and remove these for maximum lint coverage.
62ae115bc7Smrj# Please do not carry these forward to new Makefiles.
63ae115bc7Smrj#
64ae115bc7SmrjLINTTAGS	+= -erroff=E_SUSPICIOUS_COMPARISON
65ae115bc7SmrjLINTTAGS	+= -erroff=E_BAD_PTR_CAST_ALIGN
66ae115bc7SmrjLINTTAGS	+= -erroff=E_ASSIGN_NARROW_CONV
67ae115bc7Smrj
68*d3b5f563SJohn LevonCERRWARN	+= $(CNOWARN_UNINIT)
697014882cSRichard Lowe
70b6b206fcSJohn Levon# needs work
71b6b206fcSJohn Levon$(OBJS_DIR)/fd.o := SMOFF += all_func_returns
72b6b206fcSJohn Levon
73ae115bc7Smrj#
74ae115bc7Smrj#	Default build targets.
75ae115bc7Smrj#
76ae115bc7Smrj.KEEP_STATE:
77ae115bc7Smrj
78ae115bc7Smrjdef:		$(DEF_DEPS)
79ae115bc7Smrj
80ae115bc7Smrjall:		$(ALL_DEPS)
81ae115bc7Smrj
82ae115bc7Smrjclean:		$(CLEAN_DEPS)
83ae115bc7Smrj
84ae115bc7Smrjclobber:	$(CLOBBER_DEPS)
85ae115bc7Smrj
86ae115bc7Smrjlint:		$(LINT_DEPS)
87ae115bc7Smrj
88ae115bc7Smrjmodlintlib:	$(MODLINTLIB_DEPS)
89ae115bc7Smrj
90ae115bc7Smrjclean.lint:	$(CLEAN_LINT_DEPS)
91ae115bc7Smrj
92ae115bc7Smrjinstall:	$(INSTALL_DEPS)
93ae115bc7Smrj
94ae115bc7Smrj#
95ae115bc7Smrj#	Include common targets.
96ae115bc7Smrj#
97ae115bc7Smrjinclude $(UTSBASE)/intel/Makefile.targ
98