mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
d4be753df8
b4f29035ce
adapted the can_linux module to
the periph_can interface. This is a cleanup of some things that stayed
behind. Here the makefile is removed, the references to can_linux in the
dependency resolution and configuration Makefile are changed to the
standard periph_can, and the startup code is adapted.
13 lines
299 B
Makefile
13 lines
299 B
Makefile
NATIVEINCLUDES += -I$(RIOTCPU)/native/include -I$(RIOTBASE)/sys/include
|
|
|
|
# Local include for OSX
|
|
ifeq ($(BUILDOSXNATIVE),1)
|
|
NATIVEINCLUDES += -I$(RIOTCPU)/native/osx-libc-extra
|
|
endif
|
|
|
|
ifneq (,$(filter periph_can,$(USEMODULE)))
|
|
LINKFLAGS += -lsocketcan
|
|
endif
|
|
|
|
TOOLCHAINS_SUPPORTED = gnu llvm afl
|