22 lines
273 B
Makefile
22 lines
273 B
Makefile
|
# Makefile.am - Automake script for device-krypton
|
||
|
|
||
|
etcdir = ${sysconfdir}
|
||
|
dist_etc_DATA = sysctl.conf
|
||
|
|
||
|
ACLOCAL_AMFLAGS = -I m4
|
||
|
|
||
|
if IS_MDM9607
|
||
|
if DISABLE_WLAN
|
||
|
else
|
||
|
dirs = wlan_sdio
|
||
|
endif
|
||
|
else
|
||
|
if IS_APQ8009
|
||
|
dirs = wlan_pronto
|
||
|
else
|
||
|
dirs = wlan
|
||
|
endif
|
||
|
endif
|
||
|
|
||
|
SUBDIRS = $(dirs)
|