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

Side by Side Diff: src/platform/vboot_reference/misclibs/Makefile

Issue 1581005: VBoot Reference: Refactoring Part 3 (Closed)
Patch Set: . Created 10 years, 8 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 TOP ?= ../
6 CC ?= gcc
7 INCLUDES += -I./include \
8 -I$(TOP)/common/include \
9 -I$(TOP)/cryptolib/include \
10 -I$(TOP)/vfirmware/include \
11 -I$(TOP)/vkernel/include
12
13 CFLAGS ?= -Wall -DNDEBUG -O3 -Werror $(INCLUDES)
14 TOP ?= ../
15
16 MISCLIB_OUT = file_keys.o signature_digest.o
17
18 all: $(MISCLIB_OUT)
19
20 .c.o:
21 $(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
22
23 clean:
24 rm -f $(MISCLIB_OUT)
OLDNEW
« no previous file with comments | « src/platform/vboot_reference/cryptolib/sha_utility.c ('k') | src/platform/vboot_reference/misclibs/file_keys.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698