mirror of https://github.com/rusefi/ChibiOS.git
15 lines
327 B
Makefile
15 lines
327 B
Makefile
# OOP subsystem build.
|
|
|
|
# Required files.
|
|
ifndef OOPSRC
|
|
OOPSRC = ${CHIBIOS}/os/common/oop/src/oop_base_object.c \
|
|
${CHIBIOS}/os/common/oop/src/oop_referenced_object.c
|
|
ALLCSRC += $(OOPSRC)
|
|
endif
|
|
|
|
# Required include directories
|
|
ifndef OOPINC
|
|
OOPINC = ${CHIBIOS}/os/common/oop/include
|
|
ALLINC += $(OOPINC)
|
|
endif
|