os161 2.0.3

This commit is contained in:
2024-09-10 13:02:40 -04:00
commit 53c617d779
724 changed files with 93987 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
#
# Makefile for crt0.o
#
TOP=../../..
.include "$(TOP)/mk/os161.config.mk"
SRCS=$(MACHINE)/crt0.S
MKDIRS=$(INSTALLTOP)/lib $(OSTREE)/lib $(MYBUILDDIR)
.include "$(TOP)/mk/os161.baserules.mk"
.include "$(TOP)/mk/os161.compile.mk"
all-local: $(MYBUILDDIR) .WAIT $(OBJS)
install-staging-local: $(INSTALLTOP)/lib .WAIT
install-local: $(OSTREE)/lib .WAIT
.for O in $(OBJS)
install-staging-local: $(INSTALLTOP)/lib/$(O:T)
$(INSTALLTOP)/lib/$(O:T): $(O)
cp $(O) $(INSTALLTOP)/lib/$(O:T)
install-local: $(OSTREE)/lib/$(O:T)
$(OSTREE)/lib/$(O:T): $(O)
cp $(O) $(OSTREE)/lib/$(O:T)
.endfor