summaryrefslogtreecommitdiffstats
path: root/lib/crt/Makefile
blob: 8b809faa03b8a38a5fa55fd15b5893ffbb5cdbfa (plain) (blame)
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 $@