2021-09-17 03:40:01 +08:00
|
|
|
# Leave these lines at the top of the file.
|
|
|
|
# TOP should get us to the root of the project...
|
2021-12-12 03:33:58 +08:00
|
|
|
TOP = ../..
|
2021-09-17 03:40:01 +08:00
|
|
|
# ...and make.mk has all the watch library sources and includes.
|
|
|
|
include $(TOP)/make.mk
|
2021-08-29 01:58:21 +08:00
|
|
|
|
2021-12-12 03:33:58 +08:00
|
|
|
# If you add any other subdirectories with header files you wish to include, add them after ./
|
2021-08-29 01:58:21 +08:00
|
|
|
# Note that you will need to add a backslash at the end of any line you wish to continue, i.e.
|
|
|
|
# INCLUDES += \
|
2021-12-12 03:33:58 +08:00
|
|
|
# -I./ \
|
|
|
|
# -I drivers/ \
|
|
|
|
# -I utils/
|
2021-08-29 01:58:21 +08:00
|
|
|
INCLUDES += \
|
2021-12-12 03:33:58 +08:00
|
|
|
-I./ \
|
2021-08-29 01:58:21 +08:00
|
|
|
|
2021-12-12 03:33:58 +08:00
|
|
|
# If you add any other source files you wish to compile, add them after app.c
|
2021-08-29 01:58:21 +08:00
|
|
|
# Note that you will need to add a backslash at the end of any line you wish to continue, i.e.
|
|
|
|
# SRCS += \
|
2021-12-12 03:33:58 +08:00
|
|
|
# ./app.c \
|
|
|
|
# ./drivers/bmp280.c \
|
|
|
|
# ./utils/temperature.c
|
2021-08-29 01:58:21 +08:00
|
|
|
SRCS += \
|
2021-12-12 03:33:58 +08:00
|
|
|
./app.c \
|
2021-08-29 01:58:21 +08:00
|
|
|
|
2021-09-17 03:40:01 +08:00
|
|
|
# Leave this line at the bottom of the file; rules.mk has all the targets for making your project.
|
|
|
|
include $(TOP)/rules.mk
|