common: Delete unnecessary rules.
The directory tools/ is always built before common/. So when envcrc tool is necessary in common/Makefile, it already exists. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
This commit is contained in:
parent
3c6dc17eae
commit
017ce20f46
|
@ -232,14 +232,11 @@ obj-y += stdio.o
|
|||
|
||||
CPPFLAGS += -I..
|
||||
|
||||
$(obj)env_embedded.o: $(src)env_embedded.c $(obj)../tools/envcrc
|
||||
$(obj)env_embedded.o: $(src)env_embedded.c
|
||||
$(CC) $(AFLAGS) -Wa,--no-warn \
|
||||
-DENV_CRC=$(shell $(obj)../tools/envcrc) \
|
||||
-c -o $@ $(src)env_embedded.c
|
||||
|
||||
$(obj)../tools/envcrc:
|
||||
$(MAKE) -C ../tools
|
||||
|
||||
# SEE README.arm-unaligned-accesses
|
||||
$(obj)hush.o: CFLAGS += $(PLATFORM_NO_UNALIGNED)
|
||||
$(obj)fdt_support.o: CFLAGS += $(PLATFORM_NO_UNALIGNED)
|
||||
|
|
Loading…
Reference in New Issue