brintos

brintos / llvm-project-archived public Read only

0
0
Text · 199 B · f0de8ff Raw
12 lines · plain
1ASM_SOURCES := main.s2 3# This is to appease Makefile.rules, there is no main.c4C_SOURCES := main.c5 6ASM_OBJS := $(ASM_SOURCES:.s=.o)7 8%.o: %.s9	$(CC) -c -x assembler $< -o $@10 11include Makefile.rules12