Revert "Makefile: fix redundant delimiters when using make V=1"

This reverts commit 64d39a8b7b.
This commit is contained in:
yinshengkai 2023-02-01 16:46:00 +08:00 committed by Xiang Xiao
parent 05c6d7c7b9
commit ab2b09e557
2 changed files with 6 additions and 6 deletions

View File

@ -127,18 +127,18 @@ all: $(BIN)
.PHONY: clean distclean
$(AOBJS): $(BINDIR)$(DELIM)$(DELIM)%$(OBJEXT): %.S
$(call ASSEMBLE, $(realpath $<), $@)
$(call ASSEMBLE, $<, $@)
# REVISIT: Backslash causes problems in $(COBJS) target
$(COBJS): $(BINDIR)$(DELIM)$(DELIM)%$(OBJEXT): %.c
$(call COMPILE, $(realpath $<), $@)
$(call COMPILE, $<, $@)
# C library for the flat build and
# the user phase of the two-pass kernel build
$(BIN): $(OBJS)
$(call ARCHIVE, $@, $(realpath $(OBJS)))
$(call ARCHIVE, $@, $(OBJS))
ifeq ($(CONFIG_LIBC_ZONEINFO_ROMFS),y)
$(Q) $(MAKE) -C zoneinfo all BIN=$(BIN)
endif

View File

@ -52,18 +52,18 @@ all: $(BIN)
.PHONY: context depend clean distclean
$(AOBJS): $(BINDIR)$(DELIM)$(DELIM)%$(OBJEXT): %.S
$(call ASSEMBLE, $(realpath $<), $@)
$(call ASSEMBLE, $<, $@)
# REVISIT: Backslash causes problems in $(COBJS) target
$(COBJS): $(BINDIR)$(DELIM)$(DELIM)%$(OBJEXT): %.c
$(call COMPILE, $(realpath $<), $@)
$(call COMPILE, $<, $@)
# Memory manager for the flat build and
# the user phase of the two-pass kernel build
$(BIN): $(OBJS)
$(call ARCHIVE, $@, $(realpath $(OBJS)))
$(call ARCHIVE, $@, $(OBJS))
# Memory manager for the kernel phase of the two-pass kernel build