1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

make: Remove Makefile.unsupported

This mechanism was replaced by #535. It was only used in one project.
This commit is contained in:
René Kijewski 2014-05-14 22:57:05 +02:00
parent 446d4a7db9
commit 8950ab49a5
2 changed files with 1 additions and 14 deletions

View File

@ -1,7 +0,0 @@
.PHONY: all clean
all:
$(error Project $(PROJECT) currently not supported for $(BOARD))
clean:
@true

View File

@ -1,12 +1,8 @@
export PROJECT = test_nativenet
PROJECT = test_nativenet
include ../Makefile.tests_common
BOARD_WHITELIST := native
ifeq (,$(filter native,$(BOARD)))
include $(RIOTBASE)/Makefile.unsupported
else
USEMODULE += nativenet
USEMODULE += transceiver
@ -18,5 +14,3 @@ FORCE:
sender: CFLAGS += -DSENDER
sender: PROJECT = test_nativenet_sender
sender: FORCE all
endif