mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
389 B
Makefile
15 lines
389 B
Makefile
|
MODULE := vendor
|
||
|
|
||
|
# Enable submodules, although these are all compiled into the same "vendor.a"
|
||
|
# library since vendor_% is marked as a pseudomodule.
|
||
|
SUBMODULES := 1
|
||
|
SUBMODULES_NOFORCE := 1
|
||
|
|
||
|
CFLAGS += -Wno-unused-parameter -Wno-sign-compare
|
||
|
INCLUDES += \
|
||
|
-I$(RIOTCPU)/$(CPU)/include/vendor/ \
|
||
|
-I$(RIOTCPU)/$(CPU)/include/vendor/drivers/ \
|
||
|
#
|
||
|
|
||
|
include $(RIOTBASE)/Makefile.base
|