blob: 7c868ca87d9d693b0c7ae05b95ec11c134c457d9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# List of all the BMP085 device files.
BMP085SRC := $(CHIBIOS)/os/ex/devices/Bosch/bmp085.c
# Required include directories
BMP085INC := $(CHIBIOS)/os/ex/include \
$(CHIBIOS)/os/ex/devices/Bosch
# Shared variables
ALLCSRC += $(BMP085SRC)
ALLINC += $(BMP085INC)
|