Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Unified Diff: common.mk

Issue 2819004: Ensure that the default make target is always first. (Closed) Base URL: ssh://git@chromiumos-git/vboot_reference.git
Patch Set: Rebased with recent changes. Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cgpt/Makefile ('k') | misclibs/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: common.mk
diff --git a/common.mk b/common.mk
index a4a21dd1fd2c73d162cdd3465c5116641d622d03..f0de87987ce19aa3e3cb561557ffc59d97786910 100644
--- a/common.mk
+++ b/common.mk
@@ -5,6 +5,15 @@
ALL_OBJS = $(ALL_SRCS:%.c=${BUILD_ROOT}/%.o)
ALL_DEPS = $(ALL_OBJS:%.o=%.o.d)
+#
+# For this target (all) to be built by default, the including file must not
+# define any other targets above the line including this file.
+#
+# This all: rule must be above the %.o: %.c rule below, otherwise the
+# rule below becomes the default target.
+#
+all: ${ALL_OBJS}
+
${BUILD_ROOT}/%.o : %.c
$(CC) $(CFLAGS) $(INCLUDES) -MMD -MF $@.d -c -o $@ $<
« no previous file with comments | « cgpt/Makefile ('k') | misclibs/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698