mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-01 09:24:10 +01:00
12 lines
336 B
Makefile
12 lines
336 B
Makefile
#
|
|
# Rules to add FreeRTOS to a PiOS target
|
|
#
|
|
# Note that the PIOS target-specific makefile will detect that FREERTOS_DIR
|
|
# has been defined and add in the target-specific pieces separately.
|
|
#
|
|
|
|
FREERTOS_DIR := $(dir $(lastword $(MAKEFILE_LIST)))/Source
|
|
SRC += $(wildcard $(FREERTOS_DIR)/*.c)
|
|
EXTRAINCDIRS += $(FREERTOS_DIR)/include
|
|
|