Merge "makefile: fix target 'all'"

This commit is contained in:
John Koleszar 2011-10-03 08:31:13 -07:00 коммит произвёл Gerrit Code Review
Родитель 2aa408524c 22ea8592c1
Коммит 016a38be93
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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)