mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
2bdcdddd76
Everything is now defined in atmega.inc.mk, following the common RIOT-like reusability of rules and variables (e.g. cortexm.inc.mk).
10 lines
368 B
Makefile
10 lines
368 B
Makefile
# include module specific includes
|
|
export INCLUDES += -I$(RIOTCPU)/atmega_common/include \
|
|
-isystem$(RIOTCPU)/atmega_common/avr_libc_extra/include \
|
|
-isystem$(RIOTCPU)/atmega_common/avr_libc_extra/include/vendor
|
|
|
|
# avr libc needs some RIOT-specific support code
|
|
USEMODULE += avr_libc_extra
|
|
|
|
include $(RIOTMAKE)/arch/atmega.inc.mk
|