mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
de29e4184c
Application developers use `$(USEMODULES)` in their Makefiles to have the relevant functionally automagically added to their apps. This even does basic dependency tracking by means of `Makefile.dep`. But an important thing is missing: the automatic adding of include paths. This is inconvenient, error prone, and will hinder the RIOT core developers in future to change folder structures.
11 lines
211 B
Makefile
11 lines
211 B
Makefile
export PROJECT = test_pnet
|
|
include ../Makefile.tests_common
|
|
|
|
USEMODULE += auto_init
|
|
USEMODULE += posix
|
|
USEMODULE += pnet
|
|
USEMODULE += vtimer
|
|
USEMODULE += defaulttransceiver
|
|
|
|
include $(RIOTBASE)/Makefile.include
|