-
Notifications
You must be signed in to change notification settings - Fork 0
/
unimoc.mk
33 lines (28 loc) · 1016 Bytes
/
unimoc.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Base directory of Project
BASEDIR := ../../
# included modules
include ${BASEDIR}/modules/freemaster/freemaster.mk
# List of all the Project related hardware independent files.
# C code
UNIMOCSRC := ${FREEMASTERSRC} \
# Cpp code
UNIMOCCPPSRC := ${FREEMASTERCPPSRC} \
${BASEDIR}/src/main.cpp \
${BASEDIR}/src/controller.cpp \
${BASEDIR}/src/filter.cpp \
${BASEDIR}/src/observer.cpp \
${BASEDIR}/src/settings.cpp \
${BASEDIR}/src/systems.cpp \
${BASEDIR}/src/values.cpp \
${BASEDIR}/src/management.cpp \
${BASEDIR}/src/control_thread.cpp \
${BASEDIR}/src/as5048b.cpp \
${BASEDIR}/src/measurement.cpp \
# Required include directories
UNIMOCINC := ${FREEMASTERINC} \
${BASEDIR}/inc \
${BASEDIR}/hardware/interface \
# Shared variables
ALLCPPSRC += ${UNIMOCCPPSRC}
ALLCSRC += $(UNIMOCSRC)
ALLINC += $(UNIMOCINC)