mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-25 16:31:13 +00:00
261389b709
* add support for ase (vr9 support is still a todo) SVN-Revision: 28406
20 lines
502 B
Makefile
20 lines
502 B
Makefile
obj-m = lantiq_mei.o lantiq_atm.o
|
|
lantiq_atm-objs := ifxmips_atm_core.o
|
|
|
|
ifeq ($(BUILD_VARIANT),danube)
|
|
EXTRA_CFLAGS+=-DCONFIG_DANUBE
|
|
lantiq_atm-objs += ifxmips_atm_danube.o
|
|
endif
|
|
ifeq ($(BUILD_VARIANT),ase)
|
|
EXTRA_CFLAGS+=-DCONFIG_AMAZON_SE
|
|
lantiq_atm-objs += ifxmips_atm_amazon_se.o
|
|
endif
|
|
ifeq ($(BUILD_VARIANT),ar9)
|
|
EXTRA_CFLAGS+=-DCONFIG_AR9
|
|
lantiq_atm-objs += ifxmips_atm_ar9.o
|
|
endif
|
|
ifeq ($(BUILD_VARIANT),vr9)
|
|
EXTRA_CFLAGS+=-DCONFIG_VR9
|
|
lantiq_atm-objs += ifxmips_atm_vr9.o
|
|
endif
|