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

Unified Diff: src/platform/vboot_reference/Makefile

Issue 553023: RSA signature verification and SHA-1/256/512 reference implementation for verified boot. (Closed)
Patch Set: Fixes. Created 10 years, 11 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
Index: src/platform/vboot_reference/Makefile
diff --git a/src/platform/vboot_reference/Makefile b/src/platform/vboot_reference/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..55f480367bd9f43b469549d417ed52ab0baaaa65
--- /dev/null
+++ b/src/platform/vboot_reference/Makefile
@@ -0,0 +1,21 @@
+# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+export CC=gcc
+export CFLAGS=-Wall -ansi
+export TOP=$(shell pwd)
+export INCLUDEDIR=$(TOP)/include
+export INCLUDES=-I$(INCLUDEDIR)
+
+SUBDIRS=common crypto utils tests
+
+all:
+ for i in $(SUBDIRS); do \
+ ( cd $$i ; $(MAKE)) ; \
+ done
+
+clean:
+ for i in $(SUBDIRS); do \
+ ( cd $$i ; make clean) ; \
+ done
« no previous file with comments | « no previous file | src/platform/vboot_reference/common/Makefile » ('j') | src/platform/vboot_reference/crypto/padding.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698