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

Unified Diff: src/platform/vboot_reference/tests/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/crypto/Makefile ('k') | src/platform/vboot_reference/tests/run_rsa_tests.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/vboot_reference/tests/Makefile
diff --git a/src/platform/vboot_reference/tests/Makefile b/src/platform/vboot_reference/tests/Makefile
index 4801dc5b5e1f1c38a4ef2a8f6c815ad0683b279f..5d4faf98db81508876b467d1e8458dce57aa0b6b 100644
--- a/src/platform/vboot_reference/tests/Makefile
+++ b/src/platform/vboot_reference/tests/Makefile
@@ -3,7 +3,7 @@
# found in the LICENSE file.
CC ?= gcc
-CFLAGS = -Wall
+CFLAGS = -Wall -DNDEBUG
INCLUDES ?= -I../include/
TOP ?= ../
@@ -19,7 +19,7 @@ firmware_image_tests: firmware_image_tests.c
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS)
sha_benchmark: sha_benchmark.c timer_utils.c
- $(CC) $(CFLAGS) -DNDEBUG $(INCLUDES) $^ -o $@ $(LIBS)
+ $(CC) $(CFLAGS) $(INCLUDES) $^ -o $@ $(LIBS)
clean:
rm -f sha_tests sha_benchmark firmware_image_tests
« no previous file with comments | « src/platform/vboot_reference/crypto/Makefile ('k') | src/platform/vboot_reference/tests/run_rsa_tests.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698