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

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

Issue 600114: Vboot Reference: Misc style fixes to Makefile and fix testing script. (Closed)
Patch Set: Created 10 years, 10 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 | « src/platform/vboot_reference/common/Makefile ('k') | src/platform/vboot_reference/tests/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/vboot_reference/crypto/Makefile
diff --git a/src/platform/vboot_reference/crypto/Makefile b/src/platform/vboot_reference/crypto/Makefile
index b6d654f4d02354966e2eb5c444f7d06c16be6bea..92b2689a38ec647b103d85803f9524be9beb9526 100644
--- a/src/platform/vboot_reference/crypto/Makefile
+++ b/src/platform/vboot_reference/crypto/Makefile
@@ -2,18 +2,18 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-SRCS=rsa.c sha1.c sha2.c padding.c rsa_utility.c sha_utility.c
-OBJS=$(SRCS:.c=.o)
+SRCS = rsa.c sha1.c sha2.c padding.c rsa_utility.c sha_utility.c
+OBJS = $(SRCS:.c=.o)
-all: libcrypto.a
+all: libcrypto.a
-libcrypto.a: $(OBJS)
+libcrypto.a: $(OBJS)
ar rs libcrypto.a $(OBJS)
-padding.c: genpadding.sh
+padding.c: genpadding.sh
./genpadding.sh >$@
-.c.o: $(OBJS)
+.c.o: $(OBJS)
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
clean:
« no previous file with comments | « src/platform/vboot_reference/common/Makefile ('k') | src/platform/vboot_reference/tests/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698