xref: /wlan-dirver/qcacld-3.0/Makefile (revision 63d7e2a202b3cd37d6c1c20a39582b297a267b6b)
1KERNEL_SRC ?= /lib/modules/$(shell uname -r)/build
2
3# The Make variable $(M) must point to the directory that contains the module
4# source code (which includes this Makefile). It can either be an absolute or a
5# relative path. If it is a relative path, then it must be relative to the
6# kernel source directory (KERNEL_SRC). An absolute path can be obtained very
7# easily through $(shell pwd). Generating a path relative to KERNEL_SRC is
8# difficult and we accept some outside help by letting the caller override the
9# variable $(M). Allowing a relative path for $(M) enables us to have the build
10# system put output/object files (.o, .ko.) into a directory different from the
11# module source directory.
12M ?= $(shell pwd)
13
14ifeq ($(WLAN_ROOT),)
15# WLAN_ROOT must contain an absolute path (i.e. not a relative path)
16KBUILD_OPTIONS := WLAN_ROOT=$(shell cd $(KERNEL_SRC); readlink -e $(M))
17KBUILD_OPTIONS += MODNAME?=wlan
18
19#By default build for CLD
20WLAN_SELECT := CONFIG_QCA_CLD_WLAN=m
21KBUILD_OPTIONS += CONFIG_QCA_WIFI_ISOC=0
22KBUILD_OPTIONS += CONFIG_QCA_WIFI_2_0=1
23KBUILD_OPTIONS += $(WLAN_SELECT)
24KBUILD_OPTIONS += $(KBUILD_EXTRA) # Extra config if any
25endif
26
27all:
28	$(MAKE) -C $(KERNEL_SRC) M=$(M) modules $(KBUILD_OPTIONS)
29
30modules_install:
31	$(MAKE) INSTALL_MOD_STRIP=1 M=$(M) -C $(KERNEL_SRC) modules_install
32
33clean:
34	$(MAKE) -C $(KERNEL_SRC) M=$(M) clean $(KBUILD_OPTIONS)
35