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

Side by Side Diff: src/tlcl/Makefile.firmware

Issue 2831027: Add version string in binary and simplify build. (Closed) Base URL: ssh://git@chromiumos-git/tpm_lite.git
Patch Set: sed -> cut and add warnings Created 10 years, 6 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
« no previous file with comments | « src/tlcl/Makefile ('k') | src/tlcl/structures.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 CC ?= gcc 5 CC ?= gcc
6 CFLAGS += -Wall -Werror -ansi -DFIRMWARE 6 CFLAGS += -Wall -Werror -ansi -DFIRMWARE
7 7
8 all: firmware 8 all: firmware
9 9
10 .PHONY: firmware 10 .PHONY: firmware
11 11
12 firmware: tlcl.c tlcl_internal.h tlcl.h saved-structures.h 12 firmware: tlcl.c tlcl_internal.h tlcl.h structures.h
13 $(CC) -Wall -Werror -ansi -DFIRMWARE -c tlcl.c 13 $(CC) -Wall -Werror -ansi -DFIRMWARE -c tlcl.c
14 14
15 clean: 15 clean:
16 rm -f *.o 16 rm -f *.o
OLDNEW
« no previous file with comments | « src/tlcl/Makefile ('k') | src/tlcl/structures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698