summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2011-09-29 09:14:37 -0400
committerJohn Koleszar <jkoleszar@google.com>2011-09-29 09:14:44 -0400
commit22ea8592c1cba538c242005d99eb3d011a9e418f (patch)
treea9da5023b3d429eba83a3865ccece0c64ec21ea7 /build
parent6f9457ec12a98b3aceefbcb79783c084268d0b36 (diff)
downloadlibvpx-22ea8592c1cba538c242005d99eb3d011a9e418f.tar
libvpx-22ea8592c1cba538c242005d99eb3d011a9e418f.tar.gz
libvpx-22ea8592c1cba538c242005d99eb3d011a9e418f.tar.bz2
libvpx-22ea8592c1cba538c242005d99eb3d011a9e418f.zip
makefile: fix target 'all'
'all' is the conventional target for building everything in the makefile, but the child make was expecting all-$(target), for debugging reasons that I don't recall exactly. Restore the expected behavior. Change-Id: Ifbb03610b55be679ce7c5e210b7a69a156bb76b9
Diffstat (limited to 'build')
-rwxr-xr-xbuild/make/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/make/Makefile b/build/make/Makefile
index ff40ddbec..129618187 100755
--- a/build/make/Makefile
+++ b/build/make/Makefile
@@ -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)