This patch replaces the usages of `$(RM)` with cross platform `$(call RM,...)` calls which was added in https://github.com/llvm/llvm-project/pull/180224.
33 lines
754 B
Makefile
33 lines
754 B
Makefile
# List all assembler inputs stable test fixtures.
|
|
ASM_SOURCES := \
|
|
d_original_example.s \
|
|
regs_int_params.s \
|
|
regs_fp_params.s \
|
|
regs_mixed_params.s \
|
|
live_across_call.s \
|
|
loop_reg_rotate.s \
|
|
seed_reg_const_undef.s
|
|
|
|
ASM_OBJS := $(ASM_SOURCES:.s=.o)
|
|
|
|
# Provide a tiny dummy so the harness can link an exe without ASM_OBJS.
|
|
C_SOURCES := dummy_main.c
|
|
|
|
# Generating the dummy source on demand.
|
|
dummy_main.c:
|
|
@echo 'int main(void){return 0;}' > $@
|
|
|
|
# Assemble .s → .o using the configured compiler.
|
|
%.o: %.s
|
|
$(CC) $(CFLAGS) -c -x assembler $< -o $@
|
|
|
|
# Default target: build all .o fixtures and the dummy exe.
|
|
.PHONY: all
|
|
all: $(ASM_OBJS) $(EXE)
|
|
|
|
# Keeping things tidy.
|
|
clean::
|
|
$(call RM_RF,$(ASM_OBJS) dummy_main.c)
|
|
|
|
include Makefile.rules
|