Revert "Makefile: fix redundant delimiters when using make V=1"
This reverts commit 64d39a8b7b
.
This commit is contained in:
parent
05c6d7c7b9
commit
ab2b09e557
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue