1##
2## This is a common config file that is used mainly by modules
3## or brand makefiles. The ".usf" suffix stands for "universal
4## settings file". The important feature is that this file is
5## both legal makefile and shell syntax, and could be parsed as
6## a properties file by any language (Perl, Python, Java, ...)
7## which understands properties.
8##
9## Rules: Each line is either an assignment, a comment, or blank.
10## Assignments MUST be of the form "foo=bar" and comments have a
11## leading "#" character.
12##
13## This can be included by common templates like WLAN_Common.mk,
14## or by brand makefiles, or sourced by build scripts.
15##
16## $Id: WLAN.usf 350249 2012-08-11 11:11:43Z dboyce $
17##
18
19# Current list of components
20# This list is used in module makefiles to set vpath search
21# paths and include paths
22
23WLAN_AllComponentPaths=src/shared/bcmwifi src/wl/clm src/wl/lwip src/wl/ppr src/wl/rel_mcast
24
25# This WLAN_GenBaseDir is staging area for generated content
26# that need to be shared between build step and packaging
27# step. e.g When CLM data files need to be packaged, they need
28# to be first staged in following $(WLAN_GenBaseDir) first 
29# and packaging step picks up from there subsequently
30
31WLAN_GenBaseDir=generated
32