mirror of
https://github.com/boschsensortec/BME280_SensorAPI.git
synced 2024-10-05 20:47:48 -04:00
15 lines
233 B
Makefile
15 lines
233 B
Makefile
|
COINES_INSTALL_PATH ?= ../../../..
|
||
|
|
||
|
EXAMPLE_FILE ?= pressure.c
|
||
|
|
||
|
API_LOCATION ?= ../..
|
||
|
|
||
|
C_SRCS += \
|
||
|
$(API_LOCATION)/bme280.c \
|
||
|
../common/common.c
|
||
|
|
||
|
INCLUDEPATHS += \
|
||
|
$(API_LOCATION) \
|
||
|
../common
|
||
|
|
||
|
include $(COINES_INSTALL_PATH)/coines.mk
|