forked from smaolab/LXR-OWL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
72 lines (62 loc) · 1.73 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
###############################################################################
#
# Makefile for LXR firmware image
# Author: Patrick Dowling
#
# This makefile uses the subdirectory makefiles to build
# - cortex firmware image
# - AVR firmware image
# - FirmwareImageBuilder tool
# - Binary firmware image
#
# For the cross-platform builds, the necessary compilers (ARM, AVR) must either
# be in the path, or the installation directories can be specified using
# ARM_TOOLKIT_ROOT
# and
# AVR_TOOLKIT_ROOT
#
# TODO(pld) Additional build options can be specified using environment variables
# DESTDIR : where final binary image is written
# FIRMWARE : name of final binary image
#
###############################################################################
ifdef VERBOSE
AT :=
else
AT := @
endif
ARM_PATH=./mainboard/LxrStm32/
AVR_PATH=./front/LxrAvr/
BINPATH=./tools/bin/
DESTDIR?="./firmware\ image"/
ARM_BINARY=$(ARM_PATH)LxrStm32.bin
AVR_BINARY=$(AVR_PATH)LxrAvr.bin
FIB=$(BINPATH)FirmwareImageBuilder
FIRMWARE?=FIRMWARE.BIN
IMAGE?="$(DESTDIR)$(FIRMWARE)"
JOBS?=-j3
.PHONY: all
all:
@echo "Valid targets are:"
@echo " clean : clean subdirectories"
@echo " firmware : build firmware"
.PHONY: clean
clean:
$(AT)make -C tools/FirmwareImageBuilder clean
$(AT)make -C $(AVR_PATH) clean
$(AT)make -C $(ARM_PATH) clean
$(AT)rm $(IMAGE)
.PHONY: firmware
firmware: $(IMAGE)
$(IMAGE): $(ARM_BINARY) $(AVR_BINARY) $(FIB)
@echo "Building final firmware image $@..."
$(AT)$(FIB) $(ARM_BINARY) $(AVR_BINARY) "$@"
$(FIB):
@echo "** Building $@..."
$(AT)make -C tools/FirmwareImageBuilder exe
$(AVR_BINARY):
@echo "** Building $@..."
$(AT)make $(JOBS) -C $(AVR_PATH) avr
$(ARM_BINARY):
@echo "** Building $@..."
$(AT)make $(JOBS) -C $(ARM_PATH) stm32