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

Side by Side 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, 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 export CC=gcc
6 export CFLAGS=-Wall -ansi
7 export TOP=$(shell pwd)
8 export INCLUDEDIR=$(TOP)/include
9 export INCLUDES=-I$(INCLUDEDIR)
10
11 SUBDIRS=common crypto utils tests
12
13 all:
14 for i in $(SUBDIRS); do \
15 ( cd $$i ; $(MAKE)) ; \
16 done
17
18 clean:
19 for i in $(SUBDIRS); do \
20 ( cd $$i ; make clean) ; \
21 done
OLDNEW
« 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