mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
d724e71a26
Set the application module name with APPLICATION_MODULE. The default module name is "application_$(APPLICATION)". This should fix name conflicts where an application/test has the same name as an existing module and so both write to the same archive.
7 lines
176 B
Makefile
7 lines
176 B
Makefile
MODULE = $(APPLICATION_MODULE)
|
|
|
|
DIRS += $(RIOTCPU)/$(CPU) $(RIOTBOARD)/$(BOARD)
|
|
DIRS += $(RIOTBASE)/core $(RIOTBASE)/drivers $(RIOTBASE)/sys
|
|
|
|
include $(RIOTBASE)/Makefile.base
|