68 lines
1.8 KiB
Plaintext
68 lines
1.8 KiB
Plaintext
#############################################################################
|
|
# boards/arm/stm32/common/src/Make.defs
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership. The
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance with the
|
|
# License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
#############################################################################
|
|
|
|
ifeq ($(CONFIG_SENSORS_BMP180),y)
|
|
CSRCS += stm32_bmp180.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_LEDS_APA102),y)
|
|
CSRCS += stm32_apa102.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SENSORS_MAX6675),y)
|
|
CSRCS += stm32_max6675.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SENSORS_VEML6070),y)
|
|
CSRCS += stm32_veml6070.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_INPUT_NUNCHUCK),y)
|
|
CSRCS += stm32_nunchuck.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_AUDIO_TONE),y)
|
|
CSRCS += stm32_tone.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_LCD_SSD1306),y)
|
|
CSRCS += stm32_ssd1306.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SENSORS_LM75),y)
|
|
CSRCS += stm32_lm75.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_WL_NRF24L01),y)
|
|
CSRCS += stm32_nrf24l01.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SENSORS_HCSR04),y)
|
|
CSRCS += stm32_hcsr04.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SENSORS_APDS9960),y)
|
|
CSRCS += stm32_apds9960.c
|
|
endif
|
|
|
|
DEPPATH += --dep-path src
|
|
VPATH += :src
|
|
CFLAGS += $(shell $(INCDIR) $(INCDIROPT) "$(CC)" $(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src$(DELIM)board$(DELIM)src)
|