Skip to content
Snippets Groups Projects
Commit 016a38be authored by John Koleszar's avatar John Koleszar Committed by Gerrit Code Review
Browse files

Merge "makefile: fix target 'all'"

parents 2aa40852 22ea8592
No related branches found
No related tags found
No related merge requests found
......@@ -82,8 +82,8 @@ qexec=$(if $(quiet),@)
#
# Common rules"
#
.PHONY: all-$(target)
all-$(target):
.PHONY: all
all:
.PHONY: clean
clean::
......@@ -359,6 +359,6 @@ ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
endif
BUILD_TARGETS += .docs .libs .bins
INSTALL_TARGETS += .install-docs .install-srcs .install-libs .install-bins
all-$(target): $(BUILD_TARGETS)
all: $(BUILD_TARGETS)
install:: $(INSTALL_TARGETS)
dist: $(INSTALL_TARGETS)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment