codebase: Change makefile $(shell pwd) commands to $(CURDIR)
- Change the makefile command $(shell pwd) to $(CURDIR) to find the current directory without going out to the shell. Change-Id: I4890eba6129630acd2883b92de77308d39949443 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/13967 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
00e49aed52
commit
6116f369e9
|
@ -20,7 +20,7 @@ CONFIG_BUILTIN_LAR=y
|
|||
PBUILDER_CONFIG=bayou.xml
|
||||
BUILTIN_LAR=builtin.lar
|
||||
|
||||
export src := $(shell pwd)
|
||||
export src := $(CURDIR)
|
||||
export obj := $(src)/build
|
||||
|
||||
LIBPAYLOAD_DIR := $(obj)/libpayload
|
||||
|
|
|
@ -30,29 +30,29 @@ $(obj)/util/lzma/:
|
|||
$(Q)mkdir -p $(obj)/util/lzma/
|
||||
|
||||
$(obj)/util/lzma/%.o: $(src)/util/lzma/C/7zip/Compress/LZMA/%.cpp
|
||||
$(Q)printf " HOSTCXX $(subst $(shell pwd)/,,$(@))\n"
|
||||
$(Q)printf " HOSTCXX $(subst $(CURDIR)/,,$(@))\n"
|
||||
$(Q)$(HOSTCXX) $(HOSTCXXFLAGS) -o $@ -c $<
|
||||
|
||||
$(obj)/util/lzma/%.o: $(src)/util/lzma/C/7zip/Compress/LZ/%.cpp
|
||||
$(Q)printf " HOSTCXX $(subst $(shell pwd)/,,$(@))\n"
|
||||
$(Q)printf " HOSTCXX $(subst $(CURDIR)/,,$(@))\n"
|
||||
$(Q)$(HOSTCXX) $(HOSTCXXFLAGS) -o $@ -c $<
|
||||
|
||||
$(obj)/util/lzma/%.o: $(src)/util/lzma/C/7zip/Compress/RangeCoder/%.cpp
|
||||
$(Q)printf " HOSTCXX $(subst $(shell pwd)/,,$(@))\n"
|
||||
$(Q)printf " HOSTCXX $(subst $(CURDIR)/,,$(@))\n"
|
||||
$(Q)$(HOSTCXX) $(HOSTCXXFLAGS) -o $@ -c $<
|
||||
|
||||
$(obj)/util/lzma/%.o: $(src)/util/lzma/C/7zip/Decompress/%.cpp
|
||||
$(Q)printf " HOSTCXX $(subst $(shell pwd)/,,$(@))\n"
|
||||
$(Q)printf " HOSTCXX $(subst $(CURDIR)/,,$(@))\n"
|
||||
$(Q)$(HOSTCXX) $(HOSTCXXFLAGS) -o $@ -c $<
|
||||
|
||||
$(obj)/util/lzma/%.o: $(src)/util/lzma/C/7zip/Common/%.cpp
|
||||
$(Q)printf " HOSTCXX $(subst $(shell pwd)/,,$(@))\n"
|
||||
$(Q)printf " HOSTCXX $(subst $(CURDIR)/,,$(@))\n"
|
||||
$(Q)$(HOSTCXX) $(HOSTCXXFLAGS) -o $@ -c $<
|
||||
|
||||
$(obj)/util/lzma/%.o: $(src)/util/lzma/C/Common/%.cpp
|
||||
$(Q)printf " HOSTCXX $(subst $(shell pwd)/,,$(@))\n"
|
||||
$(Q)printf " HOSTCXX $(subst $(CURDIR)/,,$(@))\n"
|
||||
$(Q)$(HOSTCXX) $(HOSTCXXFLAGS) -o $@ -c $<
|
||||
|
||||
$(obj)/util/lzma/%.o: $(src)/util/lzma/%.cc
|
||||
$(Q)printf " HOSTCXX $(subst $(shell pwd)/,,$(@))\n"
|
||||
$(Q)printf " HOSTCXX $(subst $(CURDIR)/,,$(@))\n"
|
||||
$(Q)$(HOSTCXX) $(HOSTCXXFLAGS) -o $@ -c $<
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
## GNU General Public License for more details.
|
||||
##
|
||||
|
||||
src := $(shell pwd)
|
||||
src := $(CURDIR)
|
||||
srctree := $(src)
|
||||
srck := $(src)/../../util/kconfig
|
||||
coreinfo_obj := $(src)/build
|
||||
|
@ -88,18 +88,18 @@ include $(src)/.config
|
|||
real-all: $(TARGET)
|
||||
|
||||
$(TARGET): $(src)/.config $(coreinfo_obj)/config.h $(OBJS) libpayload
|
||||
printf " LPCC $(subst $(shell pwd)/,,$(@)) (LINK)\n"
|
||||
printf " LPCC $(subst $(CURDIR)/,,$(@)) (LINK)\n"
|
||||
$(LPCC) -o $@ $(OBJS)
|
||||
$(OBJCOPY) --only-keep-debug $@ $(TARGET).debug
|
||||
$(OBJCOPY) --strip-debug $@
|
||||
$(OBJCOPY) --add-gnu-debuglink=$(TARGET).debug $@
|
||||
|
||||
$(coreinfo_obj)/%.S.o: $(src)/%.S libpayload
|
||||
printf " LPAS $(subst $(shell pwd)/,,$(@))\n"
|
||||
printf " LPAS $(subst $(CURDIR)/,,$(@))\n"
|
||||
$(LPAS) -o $@ $<
|
||||
|
||||
$(coreinfo_obj)/%.o: $(src)/%.c libpayload
|
||||
printf " LPCC $(subst $(shell pwd)/,,$(@))\n"
|
||||
printf " LPCC $(subst $(CURDIR)/,,$(@))\n"
|
||||
$(LPCC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
else
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
##
|
||||
|
||||
project_name=Memtest86+
|
||||
project_dir=$(shell pwd)/memtest86plus
|
||||
project_dir=$(CURDIR)/memtest86plus
|
||||
project_git_repo=https://review.coreboot.org/memtest86plus
|
||||
|
||||
all: build
|
||||
|
|
|
@ -82,15 +82,15 @@ includes-handler= \
|
|||
$(eval includes += $(1)$(2)))
|
||||
|
||||
$(obj)/libpayload.a: $(foreach class,$(libraries),$$($(class)-objs))
|
||||
printf " AR $(subst $(shell pwd)/,,$(@))\n"
|
||||
printf " AR $(subst $(CURDIR)/,,$(@))\n"
|
||||
$(AR) rc $@ $^
|
||||
|
||||
$(obj)/%.a: $$(%-objs)
|
||||
printf " AR $(subst $(shell pwd)/,,$(@))\n"
|
||||
printf " AR $(subst $(CURDIR)/,,$(@))\n"
|
||||
$(AR) rc $@ $^
|
||||
|
||||
$(obj)/head.o: $(obj)/arch/$(ARCHDIR-y)/head.head.o.o
|
||||
printf " CP $(subst $(shell pwd)/,,$(@))\n"
|
||||
printf " CP $(subst $(CURDIR)/,,$(@))\n"
|
||||
cp $^ $@
|
||||
|
||||
install: real-target
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
obj ?= $(shell pwd)
|
||||
obj ?= $(CURDIR)
|
||||
|
||||
HOSTCC ?= gcc
|
||||
CFLAGS ?= -g
|
||||
|
|
|
@ -21,7 +21,7 @@ PROGRAM = viatool
|
|||
CC ?= gcc
|
||||
INSTALL ?= /usr/bin/install
|
||||
PREFIX ?= /usr/local
|
||||
CFLAGS ?= -O2 -g -Wall -W -I$(shell pwd)
|
||||
CFLAGS ?= -O2 -g -Wall -W -I$(CURDIR)
|
||||
LDFLAGS += -lpci -lz
|
||||
|
||||
SRCS = viatool.c \
|
||||
|
|
Loading…
Reference in New Issue