Skip to content

Commit 4daeded

Browse files
author
root
committed
fix makefile
1 parent af0b784 commit 4daeded

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

uart04/Makefile

+23-23
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARMGNU ?= arm-none-eabi
33

44
COPS = -Wall -O2 -nostdlib -nostartfiles -ffreestanding
55

6-
gcc : uart02.hex uart02.bin
6+
gcc : uart04.hex uart04.bin
77

88
all : gcc clang
99

@@ -20,18 +20,18 @@ clean :
2020
vectors.o : vectors.s
2121
$(ARMGNU)-as vectors.s -o vectors.o
2222

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
2525

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
2929

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
3232

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
3535

3636

3737

@@ -46,24 +46,24 @@ LLCOPS1 = -march=arm -mcpu=arm1176jzf-s
4646
COPS = -Wall -O2 -nostdlib -nostartfiles -ffreestanding
4747
OOPS = -std-compile-opts
4848

49-
clang : uart02.clang.hex uart02.clang.bin
49+
clang : uart04.clang.hex uart04.clang.bin
5050

5151

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
5454

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
6161

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
6464

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
6767

6868

6969

0 commit comments

Comments
 (0)