-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (26 loc) · 677 Bytes
/
Makefile
File metadata and controls
37 lines (26 loc) · 677 Bytes
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
quick_verify: partial_clean verify
clean_verify: clean verify
clean_upload: clean verify upload clean
verify_checksum:
@echo -n "Calculated checksum: "
@./utils/checksum.sh
@echo -n "Received checksum: "
@./utils/cmd_get_checksum.pl
verify:
make -f Makefile.release verify
upload:
make -f Makefile.release upload
# ctrl-t + q => quit tio session
tio:
tio --map INLCRNL --log-file /tmp/tio.log $(shell ls /dev/ttyACM*)
partial_clean:
rm -rf build/release/dalsik/
rm -rf build/release/dalsik.*
rm -rf build/release/libcore.a
clean:
rm -rf build/
test:
make -f Makefile.unittest test
ctags:
ctags -f tags -R --extras=+q --languages=C,C++ src/
.PHONY: test