mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
12 lines
280 B
Makefile
12 lines
280 B
Makefile
# define the module that is build (not strictly necessary)
|
|
MODULE = atmega_common
|
|
|
|
# add a list of subdirectories, that should also be build
|
|
DIRS = periph avr_libc_extra
|
|
|
|
ifneq (,$(filter cpu_atmega_common_cxx,$(USEMODULE)))
|
|
DIRS += cxx
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|