mirror of
https://github.com/apache/nuttx.git
synced 2026-05-29 20:56:47 +08:00
Makefile: fix redundant delimiters when using make V=1
rm-none-eabi-ar rcs libc.a bin//lib_assert.o bin//lib_builtin_getname.o Signed-off-by: yinshengkai <yinshengkai@xiaomi.com>
This commit is contained in:
committed by
Alan Carvalho de Assis
parent
f07885541c
commit
64d39a8b7b
+3
-3
@@ -52,18 +52,18 @@ all: $(BIN)
|
||||
.PHONY: context depend clean distclean
|
||||
|
||||
$(AOBJS): $(BINDIR)$(DELIM)$(DELIM)%$(OBJEXT): %.S
|
||||
$(call ASSEMBLE, $<, $@)
|
||||
$(call ASSEMBLE, $(realpath $<), $@)
|
||||
|
||||
# REVISIT: Backslash causes problems in $(COBJS) target
|
||||
|
||||
$(COBJS): $(BINDIR)$(DELIM)$(DELIM)%$(OBJEXT): %.c
|
||||
$(call COMPILE, $<, $@)
|
||||
$(call COMPILE, $(realpath $<), $@)
|
||||
|
||||
# Memory manager for the flat build and
|
||||
# the user phase of the two-pass kernel build
|
||||
|
||||
$(BIN): $(OBJS)
|
||||
$(call ARCHIVE, $@, $(OBJS))
|
||||
$(call ARCHIVE, $@, $(realpath $(OBJS)))
|
||||
|
||||
# Memory manager for the kernel phase of the two-pass kernel build
|
||||
|
||||
|
||||
Reference in New Issue
Block a user