aboutsummaryrefslogtreecommitdiffstats
path: root/source/board/board.mk
blob: 155285a463969768293f3ccc1fd7e478584f79c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# List of all the board related files.
ifeq ($(TARGET_PLATFORM),H7)
  BOARDSRC = ./source/board/board_h7.c
else
  BOARDSRC = ./source/board/board_l4.c
endif

# Required include directories
ifeq ($(TARGET_PLATFORM),H7)
  BOARDINC = ./source/board/h7
else
  BOARDINC = ./source/board/l4
endif

# Shared variables
ALLCSRC += $(BOARDSRC)
ALLINC  += $(BOARDINC)