mirror of
https://github.com/torvalds/linux.git
synced 2026-04-25 18:12:26 -04:00
Kbuild conventionally uses $(obj)/ for generated files, and $(src)/ for
checked-in source files. It is merely a convention without any functional
difference. In fact, $(obj) and $(src) are exactly the same, as defined
in scripts/Makefile.build:
src := $(obj)
When the kernel is built in a separate output directory, $(src) does
not accurately reflect the source directory location. While Kbuild
resolves this discrepancy by specifying VPATH=$(srctree) to search for
source files, it does not cover all cases. For example, when adding a
header search path for local headers, -I$(srctree)/$(src) is typically
passed to the compiler.
This introduces inconsistency between upstream and downstream Makefiles
because $(src) is used instead of $(srctree)/$(src) for the latter.
To address this inconsistency, this commit changes the semantics of
$(src) so that it always points to the directory in the source tree.
Going forward, the variables used in Makefiles will have the following
meanings:
$(obj) - directory in the object tree
$(src) - directory in the source tree (changed by this commit)
$(objtree) - the top of the kernel object tree
$(srctree) - the top of the kernel source tree
Consequently, $(srctree)/$(src) in upstream Makefiles need to be replaced
with $(src).
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
#
|
|
# Makefile fragment for Broadcom 802.11n Networking Device Driver
|
|
#
|
|
# Copyright (c) 2010 Broadcom Corporation
|
|
#
|
|
# Permission to use, copy, modify, and/or distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
# SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
# OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
ccflags-y := \
|
|
-I $(src) \
|
|
-I $(src)/phy \
|
|
-I $(src)/../include
|
|
|
|
brcmsmac-y := \
|
|
mac80211_if.o \
|
|
ucode_loader.o \
|
|
ampdu.o \
|
|
antsel.o \
|
|
channel.o \
|
|
main.o \
|
|
phy_shim.o \
|
|
pmu.o \
|
|
rate.o \
|
|
stf.o \
|
|
aiutils.o \
|
|
phy/phy_cmn.o \
|
|
phy/phy_lcn.o \
|
|
phy/phy_n.o \
|
|
phy/phytbl_lcn.o \
|
|
phy/phytbl_n.o \
|
|
phy/phy_qmath.o \
|
|
dma.o \
|
|
brcms_trace_events.o \
|
|
debug.o
|
|
|
|
brcmsmac-$(CONFIG_BRCMSMAC_LEDS) += led.o
|
|
|
|
obj-$(CONFIG_BRCMSMAC) += brcmsmac.o
|