18 lines
215 B
Makefile
18 lines
215 B
Makefile
LIBS = crt0.o
|
|
|
|
INST = $(addprefix $(DESTDIR)$(LIBDIR)/, $(LIBS))
|
|
|
|
all: $(LIBS)
|
|
|
|
%.o: %.asm
|
|
$(AS) $< $@
|
|
|
|
$(DESTDIR)$(LIBDIR)/%.o: %.o
|
|
install -D $< $@
|
|
|
|
clean:
|
|
$(RM) $(LIBS)
|
|
|
|
install: $(INST)
|
|
|
|
include stpd.base.mk
|