mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
20 lines
503 B
Makefile
20 lines
503 B
Makefile
APPLICATION = net_if
|
|
|
|
BOARD_BLACKLIST = mbed_lpc1768 arduino-due udoo qemu-i386 stm32f0discovery stm32f3discovery \
|
|
stm32f4discovery
|
|
# qemu-i386: no transceiver, yet
|
|
# stm32f0discovery: no transceiver, yet
|
|
# stm32f3discovery: no transceiver, yet
|
|
# stm32f4discovery: no transceiver, yet
|
|
|
|
include ../Makefile.tests_common
|
|
|
|
ifeq ($(BOARD),stm32f4discovery)
|
|
include Makefile.$(BOARD)
|
|
endif
|
|
|
|
USEMODULE += net_if
|
|
USEMODULE += defaulttransceiver
|
|
|
|
include $(RIOTBASE)/Makefile.include
|