@@ -3,7 +3,7 @@ ARMGNU ?= arm-none-eabi
3
3
4
4
COPS = -Wall -O2 -nostdlib -nostartfiles -ffreestanding
5
5
6
- gcc : uart02 .hex uart02 .bin
6
+ gcc : uart04 .hex uart04 .bin
7
7
8
8
all : gcc clang
9
9
@@ -20,18 +20,18 @@ clean :
20
20
vectors.o : vectors.s
21
21
$(ARMGNU ) -as vectors.s -o vectors.o
22
22
23
- uart02 .o : uart02 .c
24
- $(ARMGNU ) -gcc $(COPS ) -c uart02 .c -o uart02 .o
23
+ uart04 .o : uart04 .c
24
+ $(ARMGNU ) -gcc $(COPS ) -c uart04 .c -o uart04 .o
25
25
26
- uart02 .elf : memmap vectors.o uart02 .o
27
- $(ARMGNU ) -ld vectors.o uart02 .o -T memmap -o uart02 .elf
28
- $(ARMGNU ) -objdump -D uart02 .elf > uart02 .list
26
+ uart04 .elf : memmap vectors.o uart04 .o
27
+ $(ARMGNU ) -ld vectors.o uart04 .o -T memmap -o uart04 .elf
28
+ $(ARMGNU ) -objdump -D uart04 .elf > uart04 .list
29
29
30
- uart02 .bin : uart02 .elf
31
- $(ARMGNU ) -objcopy uart02 .elf -O binary uart02 .bin
30
+ uart04 .bin : uart04 .elf
31
+ $(ARMGNU ) -objcopy uart04 .elf -O binary uart04 .bin
32
32
33
- uart02 .hex : uart02 .elf
34
- $(ARMGNU ) -objcopy uart02 .elf -O ihex uart02 .hex
33
+ uart04 .hex : uart04 .elf
34
+ $(ARMGNU ) -objcopy uart04 .elf -O ihex uart04 .hex
35
35
36
36
37
37
@@ -46,24 +46,24 @@ LLCOPS1 = -march=arm -mcpu=arm1176jzf-s
46
46
COPS = -Wall -O2 -nostdlib -nostartfiles -ffreestanding
47
47
OOPS = -std-compile-opts
48
48
49
- clang : uart02 .clang.hex uart02 .clang.bin
49
+ clang : uart04 .clang.hex uart04 .clang.bin
50
50
51
51
52
- uart02 .clang.bc : uart02 .c
53
- clang $(LOPS ) -c uart02 .c -o uart02 .clang.bc
52
+ uart04 .clang.bc : uart04 .c
53
+ clang $(LOPS ) -c uart04 .c -o uart04 .clang.bc
54
54
55
- uart02 .clang.opt.elf : memmap vectors.o uart02 .clang.bc
56
- opt $(OOPS ) uart02 .clang.bc -o uart02 .clang.opt.bc
57
- llc $(LLCOPS ) uart02 .clang.opt.bc -o uart02 .clang.opt.s
58
- $(ARMGNU ) -as uart02 .clang.opt.s -o uart02 .clang.opt.o
59
- $(ARMGNU ) -ld -o uart02 .clang.opt.elf -T memmap vectors.o uart02 .clang.opt.o
60
- $(ARMGNU ) -objdump -D uart02 .clang.opt.elf > uart02 .clang.opt.list
55
+ uart04 .clang.opt.elf : memmap vectors.o uart04 .clang.bc
56
+ opt $(OOPS ) uart04 .clang.bc -o uart04 .clang.opt.bc
57
+ llc $(LLCOPS ) uart04 .clang.opt.bc -o uart04 .clang.opt.s
58
+ $(ARMGNU ) -as uart04 .clang.opt.s -o uart04 .clang.opt.o
59
+ $(ARMGNU ) -ld -o uart04 .clang.opt.elf -T memmap vectors.o uart04 .clang.opt.o
60
+ $(ARMGNU ) -objdump -D uart04 .clang.opt.elf > uart04 .clang.opt.list
61
61
62
- uart02 .clang.hex : uart02 .clang.opt.elf
63
- $(ARMGNU ) -objcopy uart02 .clang.opt.elf uart02 .clang.hex -O ihex
62
+ uart04 .clang.hex : uart04 .clang.opt.elf
63
+ $(ARMGNU ) -objcopy uart04 .clang.opt.elf uart04 .clang.hex -O ihex
64
64
65
- uart02 .clang.bin : uart02 .clang.opt.elf
66
- $(ARMGNU ) -objcopy uart02 .clang.opt.elf uart02 .clang.bin -O binary
65
+ uart04 .clang.bin : uart04 .clang.opt.elf
66
+ $(ARMGNU ) -objcopy uart04 .clang.opt.elf uart04 .clang.bin -O binary
67
67
68
68
69
69
0 commit comments