Merge "makefile: fix target 'all'"
This commit is contained in:
Коммит
016a38be93
|
@ -82,8 +82,8 @@ qexec=$(if $(quiet),@)
|
||||||
#
|
#
|
||||||
# Common rules"
|
# Common rules"
|
||||||
#
|
#
|
||||||
.PHONY: all-$(target)
|
.PHONY: all
|
||||||
all-$(target):
|
all:
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean::
|
clean::
|
||||||
|
@ -359,6 +359,6 @@ ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
|
||||||
endif
|
endif
|
||||||
BUILD_TARGETS += .docs .libs .bins
|
BUILD_TARGETS += .docs .libs .bins
|
||||||
INSTALL_TARGETS += .install-docs .install-srcs .install-libs .install-bins
|
INSTALL_TARGETS += .install-docs .install-srcs .install-libs .install-bins
|
||||||
all-$(target): $(BUILD_TARGETS)
|
all: $(BUILD_TARGETS)
|
||||||
install:: $(INSTALL_TARGETS)
|
install:: $(INSTALL_TARGETS)
|
||||||
dist: $(INSTALL_TARGETS)
|
dist: $(INSTALL_TARGETS)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче