bme680-stm32/Makefile

18 lines
334 B
Makefile
Raw Normal View History

2021-01-06 00:58:55 +01:00
TARGET := voc-sensor
RTOS := freertos
DEVICE := stm32l152rc
2021-01-06 23:51:11 +01:00
DEFS := BME68X_DO_NOT_USE_FPU
2021-01-06 00:58:55 +01:00
INCDIRS := \
src \
2021-01-06 23:51:11 +01:00
src/BME68x-Sensor-API
2021-01-06 00:58:55 +01:00
2021-01-06 23:51:11 +01:00
SOURCES := \
src/bmeSPI.cxx \
src/main.cxx \
src/handlers.cxx \
src/BME68x-Sensor-API/bme68x.c
2021-01-06 00:58:55 +01:00
# Actual build engine
include core/mk/include.mk