ref: 016a38be93baabec24d922102edb150f554cb141
parent: 2aa408524cd578985cd6aae53834eee0455f823d
parent: 22ea8592c1cba538c242005d99eb3d011a9e418f
author: John Koleszar <jkoleszar@google.com>
date: Mon Oct 3 04:31:13 EDT 2011
Merge "makefile: fix target 'all'"
--- a/build/make/Makefile
+++ b/build/make/Makefile
@@ -82,8 +82,8 @@
#
# Common rules"
#
-.PHONY: all-$(target)
-all-$(target):
+.PHONY: all
+all:
.PHONY: clean
clean::
@@ -359,6 +359,6 @@
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)
--
⑨