13 lines
199 B
Makefile
13 lines
199 B
Makefile
|
TARGET := voc-sensor
|
||
|
RTOS := freertos
|
||
|
DEVICE := stm32l152rc
|
||
|
|
||
|
INCDIRS := \
|
||
|
src \
|
||
|
|
||
|
SOURCES := \
|
||
|
src/main.cxx \
|
||
|
src/handlers.cxx
|
||
|
|
||
|
# Actual build engine
|
||
|
include core/mk/include.mk
|