xref: /illumos-gate/usr/src/uts/intel/iwn/Makefile (revision 48bbca816818409505a6e214d0911fda44e622e3)
1#
2# This file and its contents are supplied under the terms of the
3# Common Development and Distribution License ("CDDL"), version 1.0.
4# You may only use this file in accordance with the terms of version
5# 1.0 of the CDDL.
6#
7# A full copy of the text of the CDDL should have accompanied this
8# source.  A copy of the CDDL is also available via the Internet at
9# http://www.illumos.org/license/CDDL.
10#
11
12#
13# Copyright 2016 Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
14#
15
16#
17# This makefile drives the production of the iwn driver kernel module.
18#
19# intel architecture dependent
20#
21
22#
23#	Path to the base of the uts directory tree (usually /usr/src/uts).
24#
25UTSBASE	= ../..
26
27#
28#	Define firmware location & files
29#
30FWDIR	= $(UTSBASE)/common/io/iwn/fw-iw
31FWFILES	= iwlwifi-100-5.ucode iwlwifi-1000-3.ucode iwlwifi-105-6.ucode \
32	iwlwifi-135-6.ucode iwlwifi-2000-6.ucode iwlwifi-2030-6.ucode \
33	iwlwifi-4965-2.ucode iwlwifi-5000-2.ucode iwlwifi-5150-2.ucode \
34	iwlwifi-6000-4.ucode iwlwifi-6000g2a-6.ucode iwlwifi-6000g2b-6.ucode \
35	iwlwifi-6050-5.ucode
36
37#
38#	Define the module and object file sets.
39#
40MODULE		= iwn
41OBJECTS		= $(IWN_OBJS:%=$(OBJS_DIR)/%)
42LINTS		= $(IWN_OBJS:%.o=$(LINTS_DIR)/%.ln)
43ROOTMODULE	= $(ROOT_DRV_DIR)/$(MODULE)
44ROOTFIRMWARE	= $(FWFILES:%=$(ROOT_FIRMWARE_DIR)/$(MODULE)/%)
45
46#
47#	Include common rules.
48#
49include $(UTSBASE)/intel/Makefile.intel
50
51#
52#	Define targets
53#
54ALL_TARGET	= $(BINARY) $(CONFMOD) $(ITUMOD)
55LINT_TARGET	= $(MODULE).lint
56INSTALL_TARGET	= $(BINARY) $(ROOTMODULE) $(ROOTFIRMWARE)
57
58#
59#	Overrides
60#
61LINTTAGS	+= -erroff=E_FUNC_RET_MAYBE_IGNORED2
62LINTTAGS	+= -erroff=E_FUNC_RET_ALWAYS_IGNOR2
63LINTTAGS	+= -erroff=E_INTEGER_OVERFLOW_DETECTED
64
65LDFLAGS         += -dy -Nmisc/mac -Nmisc/net80211 -Ndrv/random -Ndrv/ip
66
67CERRWARN	+= -erroff=E_INTEGER_OVERFLOW_DETECTED
68
69#
70#	Default build targets.
71#
72.KEEP_STATE:
73
74def:		$(DEF_DEPS)
75
76all:		$(ALL_DEPS)
77
78clean:		$(CLEAN_DEPS)
79
80clobber:	$(CLOBBER_DEPS)
81
82lint:		$(LINT_DEPS)
83
84modlintlib:	$(MODLINTLIB_DEPS)
85
86clean.lint:	$(CLEAN_LINT_DEPS)
87
88install:	$(INSTALL_DEPS)
89
90#
91#	Include common targets.
92#
93include $(UTSBASE)/intel/Makefile.targ
94