mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
20 lines
306 B
Makefile
20 lines
306 B
Makefile
APPLICATION = nativenet
|
|
include ../Makefile.tests_common
|
|
|
|
BOARD_WHITELIST := native
|
|
|
|
USEMODULE += nativenet
|
|
USEMODULE += transceiver
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
FORCE:
|
|
touch main.c
|
|
|
|
sender: CFLAGS += -DSENDER
|
|
sender: APPLICATION = nativenet_sender
|
|
sender: FORCE all
|
|
|
|
test:
|
|
./tests/01-tests.py
|