* Add SPI flash configs, IOBinders, CI tests, and docs * Add writable SPI flash support * bump * Fix CI * Fix CI * Update docs/Generators/TestChipIP.rst Co-authored-by: Chick Markley <chick@qrhino.com> * Maybe actually fix CI * Fix broken merge * Fix the tutorial patch * bump tcip to master * fix GPIO naming bug Co-authored-by: Chick Markley <chick@qrhino.com>
38 lines
754 B
Makefile
38 lines
754 B
Makefile
GCC=riscv64-unknown-elf-gcc
|
|
OBJDUMP=riscv64-unknown-elf-objdump
|
|
CFLAGS= -std=gnu99 -O2 -fno-common -fno-builtin-printf -Wall
|
|
LDFLAGS= -static
|
|
|
|
include libgloss.mk
|
|
|
|
PROGRAMS = pwm blkdev accum charcount nic-loopback big-blkdev pingd spiflashread spiflashwrite
|
|
|
|
spiflash.img: spiflash.py
|
|
python3 $<
|
|
|
|
.DEFAULT_GOAL := default
|
|
|
|
.PHONY: default
|
|
default: $(addsuffix .riscv,$(PROGRAMS)) spiflash.img
|
|
|
|
.PHONY: dumps
|
|
dumps: $(addsuffix .dump,$(PROGRAMS))
|
|
|
|
%.o: %.S
|
|
$(GCC) $(CFLAGS) -D__ASSEMBLY__=1 -c $< -o $@
|
|
|
|
%.o: %.c mmio.h spiflash.h
|
|
$(GCC) $(CFLAGS) -c $< -o $@
|
|
|
|
%.riscv: %.o $(libgloss)
|
|
$(GCC) $(LDFLAGS) $< -o $@
|
|
|
|
%.dump: %.riscv
|
|
$(OBJDUMP) -D $< > $@
|
|
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.riscv *.o *.dump
|
|
$(if $(libgloss),rm -rf $(libgloss_builddir)/)
|