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 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