-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathMakefile
62 lines (49 loc) · 2.1 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
###########################################################################################
###########################################################################################
# MASTER MAKEFILE
###########################################################################################
###########################################################################################
include Makefile-help
include Makefile-avrdude
all: help
linux-all: linux-shell linux-hex
windows-all: windows-shell windows-hex
###########################################################################################
###########################################################################################
# LINUX
linux-shell:
make -f XenoShell/Makefile-LINUX
linux-hex:
make -f XenoAT/Makefile-LINUX
linux-extra:
make -f XenoShell/Makefile-LINUX
make extra -f XenoAT/Makefile-LINUX
###########################################################################################
###########################################################################################
# WINDOWS
windows-shell:
$(MAKE) -f XenoShell/Makefile-WIN
windows-hex:
$(MAKE) -f XenoAT/Makefile-WIN
windows-extra:
$(MAKE) -f XenoShell/Makefile-WIN
$(MAKE) extra -f XenoAT/Makefile-WIN
###########################################################################################
###########################################################################################
# Clean WINDOWS / LINUX
clean:
make clean -f XenoAT/Makefile-LINUX
make clean -f XenoShell/Makefile-LINUX
###########################################################################################
###########################################################################################
# AVRDUDE
flash:
$(AVRDUDE) $(FLAGS) -v -U flash:w:$(TARGET)/$(TARGET).hex
readfuse:
uisp -dprog=dasa2 -dserial=$(PORT) --rd_fuses
writefuse:
$(AVRDUDE) $(FLAGS) -v -U lfuse:w:0xC4:m -U hfuse:w:0xD9:m
###########################################################################################
###########################################################################################
# HELP
help: