5039299
1 2 3 4 5 6 7 8
SFILES := $(wildcard $(TARGET_MACHINE)/*.s) OFILES := $(patsubst %.s,%.o,$(SFILES)) all: ${OFILES} cp ${OFILES} $(LIBDIR)/ %.o:%.s $(AS) $< -o $@