2017-07-14 19:26:44 +02:00
|
|
|
############################################################################
|
2019-08-19 17:16:08 +02:00
|
|
|
# boards/arm/stm32f7/stm32f769i-disco/src/Makefile
|
2017-07-14 19:26:44 +02:00
|
|
|
#
|
2021-03-05 10:18:57 +01:00
|
|
|
# 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
|
2017-07-14 19:26:44 +02:00
|
|
|
#
|
2021-03-05 10:18:57 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2017-07-14 19:26:44 +02:00
|
|
|
#
|
2021-03-05 10:18:57 +01:00
|
|
|
# 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.
|
2017-07-14 19:26:44 +02:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-18 21:42:11 +02:00
|
|
|
include $(TOPDIR)/Make.defs
|
2017-07-14 19:26:44 +02:00
|
|
|
|
2019-07-13 18:36:28 +02:00
|
|
|
CSRCS = stm32_boot.c stm32_bringup.c stm32_spi.c
|
2017-07-14 19:26:44 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_LEDS),y)
|
|
|
|
CSRCS += stm32_autoleds.c
|
|
|
|
else
|
|
|
|
CSRCS += stm32_userleds.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_BUTTONS),y)
|
|
|
|
CSRCS += stm32_buttons.c
|
|
|
|
endif
|
|
|
|
|
2021-08-01 09:00:54 +02:00
|
|
|
ifeq ($(CONFIG_BOARDCTL),y)
|
2017-07-14 19:26:44 +02:00
|
|
|
CSRCS += stm32_appinitialize.c
|
|
|
|
endif
|
|
|
|
|
2019-07-13 18:36:28 +02:00
|
|
|
ifeq ($(CONFIG_PWM),y)
|
|
|
|
CSRCS += stm32_pwm.c
|
|
|
|
endif
|
|
|
|
|
2017-07-14 19:26:44 +02:00
|
|
|
ifeq ($(CONFIG_SPORADIC_INSTRUMENTATION),y)
|
|
|
|
CSRCS += stm32_sporadic.c
|
|
|
|
endif
|
|
|
|
|
2020-06-23 16:56:37 +02:00
|
|
|
ifeq ($(CONFIG_STM32F7_FMC),y)
|
|
|
|
CSRCS += stm32_extmem.c
|
|
|
|
endif
|
|
|
|
|
2019-08-05 14:04:14 +02:00
|
|
|
include $(TOPDIR)/boards/Board.mk
|