mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-25 23:24:15 +01:00
34 lines
795 B
Makefile
34 lines
795 B
Makefile
CROSS=riscv64-unknown-elf-
|
|
FLAGS=\
|
|
-mabi=ilp32 \
|
|
-march=rv32i \
|
|
-std=c11 \
|
|
-Os \
|
|
-Wall \
|
|
-Wstrict-prototypes \
|
|
-fverbose-asm \
|
|
-ffunction-sections \
|
|
-fdata-sections \
|
|
-Wl,--gc-sections \
|
|
-ffreestanding \
|
|
-nostartfiles \
|
|
-nostdlib
|
|
|
|
all: cntrllr.bin print_size
|
|
|
|
cntrllr.elf: cntrllr.ld main.c rtc.c startup.S
|
|
@$(CROSS)gcc $(FLAGS) -Tcntrllr.ld main.c rtc.c startup.S -o cntrllr.elf
|
|
|
|
cntrllr.bin: cntrllr.elf
|
|
@$(CROSS)objcopy -O binary --gap-fill 0xFF --pad-to 0x4004 cntrllr.elf cntrllr.bin
|
|
|
|
print_size:
|
|
@echo 'Size of target .elf file:'
|
|
@$(CROSS)size -B cntrllr.elf
|
|
@echo $(shell $(CROSS)size -B cntrllr.elf | awk 'NR==2 { printf "\nTotal memory used: %.2f%%\n",(100/(16*1024))*($$4-4) }')
|
|
|
|
clean:
|
|
@rm -f cntrllr.bin cntrllr.elf
|
|
|
|
.PHONY: clean
|