bf3fe05dfb
This needs some more testing before it's on by default. If the card is otherwise functioning, these messages may be confusing to the user. If the card is not functioning, the driver can be reloaded with debug to check for this condition. Signed-off-by: Shaun Ruffell <sruffell@digium.com> git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9205 a0bf4364-ded3-4de4-8d8a-66a801d63aff
19 lines
412 B
Makefile
19 lines
412 B
Makefile
obj-$(DAHDI_BUILD_ALL)$(CONFIG_DAHDI_WCTC4XXP) += wctc4xxp.o
|
|
|
|
FIRM_DIR := ../firmware
|
|
|
|
EXTRA_CFLAGS += -I$(src)/.. -Wno-undef
|
|
|
|
ifeq ($(HOTPLUG_FIRMWARE),yes)
|
|
EXTRA_CFLAGS+=-DHOTPLUG_FIRMWARE
|
|
endif
|
|
|
|
wctc4xxp-objs := base.o
|
|
|
|
ifneq ($(HOTPLUG_FIRMWARE),yes)
|
|
wctc4xxp-objs += $(FIRM_DIR)/dahdi-fw-tc400m.o
|
|
endif
|
|
|
|
$(obj)/$(FIRM_DIR)/dahdi-fw-tc400m.o: $(obj)/base.o
|
|
$(MAKE) -C $(obj)/$(FIRM_DIR) dahdi-fw-tc400m.o
|