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

Side by Side Diff: firmware/Makefile

Issue 2871019: More cleanup of MSVC errors (Closed) Base URL: ssh://gitrw.chromium.org/vboot_reference.git
Patch Set: 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 | « Makefile ('k') | firmware/include/sysincludes.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 FWTOP := $(shell pwd) 5 FWTOP := $(shell pwd)
6 LIBDIR = $(FWTOP)/lib 6 LIBDIR = $(FWTOP)/lib
7 STUBDIR = $(FWTOP)/stub 7 STUBDIR = $(FWTOP)/stub
8 TESTDIR = $(FWTOP)/linktest 8 TESTDIR = $(FWTOP)/linktest
9 BUILD_ROOT := ${BUILD}/$(shell basename ${FWTOP}) 9 BUILD_ROOT := ${BUILD}/$(shell basename ${FWTOP})
10 10
11 INCLUDES = \ 11 INCLUDES = \
12 -I$(FWTOP)/include \ 12 -I$(FWTOP)/include \
13 -I$(STUBDIR)/include \
gauravsh 2010/06/22 01:22:21 nit: alpha
13 -I$(LIBDIR)/include \ 14 -I$(LIBDIR)/include \
14 -I$(LIBDIR)/cgptlib/include \ 15 -I$(LIBDIR)/cgptlib/include \
15 -I$(LIBDIR)/cryptolib/include 16 -I$(LIBDIR)/cryptolib/include
16 17
17 18
18 # find ./lib -iname '*.c' | sort 19 # find ./lib -iname '*.c' | sort
19 LIB_SRCS = \ 20 LIB_SRCS = \
20 ./lib/cgptlib/cgptlib.c \ 21 ./lib/cgptlib/cgptlib.c \
21 ./lib/cgptlib/cgptlib_internal.c \ 22 ./lib/cgptlib/cgptlib_internal.c \
22 ./lib/cgptlib/crc32.c \ 23 ./lib/cgptlib/crc32.c \
(...skipping 19 matching lines...) Expand all
42 43
43 test : $(FWLIB) 44 test : $(FWLIB)
44 $(CC) $(CFLAGS) $(INCLUDES) -o $(BUILD_ROOT)/a.out \ 45 $(CC) $(CFLAGS) $(INCLUDES) -o $(BUILD_ROOT)/a.out \
45 $(TESTDIR)/main.c $(FWLIB) 46 $(TESTDIR)/main.c $(FWLIB)
46 47
47 include ../common.mk 48 include ../common.mk
48 49
49 $(FWLIB) : $(ALL_OBJS) 50 $(FWLIB) : $(ALL_OBJS)
50 rm -f $@ 51 rm -f $@
51 ar qc $@ $^ 52 ar qc $@ $^
OLDNEW
« no previous file with comments | « Makefile ('k') | firmware/include/sysincludes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698