-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
60 lines (49 loc) · 1.07 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
DEVICE ?= /dev/ttyACM0
COMPILE_FLAGS ?=
# export vars to invoked commands
export
.PHONY: build
build:
docker-compose build
.PHONY: install-deps
install-deps:
docker-compose run --rm app \
arduino-cli core install arduino:[email protected]
.PHONY: shell
shell:
docker-compose run --rm app \
/bin/bash
.PHONY: monitor
monitor:
docker-compose run --rm app \
arduino-cli monitor \
-p $(DEVICE) \
--fqbn arduino:megaavr:nona4809 \
-l serial
.PHONY: compile
compile: .enable-logging .do-compile
.PHONY: compile-release
compile-release: .do-compile
.PHONY: upload
upload:
docker-compose run --rm app \
arduino-cli upload \
-p $(DEVICE) \
--fqbn arduino:megaavr:nona4809 \
--input-dir build \
--verify \
src
#################
# PRIVATE TASKS #
#################
.PHONY: .enable-logging
.enable-logging:
$(eval COMPILE_FLAGS += --build-properties build.extra_flags=-DENABLE_LOGGING)
.PHONY: .do-compile
.do-compile:
docker-compose run --rm app \
arduino-cli compile \
--fqbn arduino:megaavr:nona4809 \
--build-path build \
$(COMPILE_FLAGS) \
src