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

Unified Diff: src/platform/vboot_reference/common/Makefile

Issue 1241002: VBoot Reference: Add version checking to for preventing rollbacks. (Closed)
Patch Set: . Created 10 years, 9 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 | « no previous file | src/platform/vboot_reference/common/tlcl_stub.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/vboot_reference/common/Makefile
diff --git a/src/platform/vboot_reference/common/Makefile b/src/platform/vboot_reference/common/Makefile
index fc73ec23a261f18fb71bb6510c965282ef273955..b9b4a5129b7e7f3886ea0d5ef4651e09acf64763 100644
--- a/src/platform/vboot_reference/common/Makefile
+++ b/src/platform/vboot_reference/common/Makefile
@@ -2,13 +2,13 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-SRCS = utility_stub.c
+SRCS = utility_stub.c tlcl_stub.c
OBJS = $(SRCS:.c=.o)
all: libcommon.a
libcommon.a: $(OBJS)
- ar rs $@ $<
+ ar rs $@ $^
.c.o: $(OBJS)
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
« no previous file with comments | « no previous file | src/platform/vboot_reference/common/tlcl_stub.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698