You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
430 B
22 lines
430 B
AS=riscv32-elf-as
|
|
LD=riscv32-elf-ld
|
|
BUILD_DIR=../build/tests/
|
|
|
|
S_FILES := $(shell find ./ -name '*.s' -not -name 'exit_return.s')
|
|
NAMES = $(basename $(S_FILES))
|
|
OBJECTS=$(patsubst %, $(BUILD_DIR)/%, $(NAMES))
|
|
|
|
all: $(OBJECTS) run
|
|
|
|
$(BUILD_DIR):
|
|
mkdir -p $(BUILD_DIR)
|
|
|
|
$(BUILD_DIR)/%.o: %.s | $(BUILD_DIR)
|
|
$(AS) $^ -o $@
|
|
|
|
$(BUILD_DIR)/%: $(BUILD_DIR)/%.o | $(BUILD_DIR)
|
|
$(LD) $^ -o $@ -nostdlib
|
|
|
|
.SILENT: run
|
|
run:
|
|
bash test.sh
|
|
|