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

Side by Side Diff: lib/chromeos/Makefile

Issue 6628009: Add a wrapper function of LoadKernel() (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/u-boot-next.git@chromeos-v2010.09
Patch Set: Code review: set gbb to NULL on error Created 9 years, 9 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 | Annotate | Revision Log
OLDNEW
1 # 1 #
2 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. 2 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # 5 #
6 # Alternatively, this software may be distributed under the terms of the 6 # Alternatively, this software may be distributed under the terms of the
7 # GNU General Public License ("GPL") version 2 as published by the Free 7 # GNU General Public License ("GPL") version 2 as published by the Free
8 # Software Foundation. 8 # Software Foundation.
9 # 9 #
10 10
11 include $(TOPDIR)/config.mk 11 include $(TOPDIR)/config.mk
12 12
13 LIB = $(obj)libchromeos.a 13 LIB = $(obj)libchromeos.a
14 14
15 COBJS-$(CONFIG_CHROMEOS) += boot_device.o 15 COBJS-$(CONFIG_CHROMEOS) += boot_device.o
16 COBJS-$(CONFIG_CHROMEOS) += fmap.o 16 COBJS-$(CONFIG_CHROMEOS) += fmap.o
17 COBJS-$(CONFIG_CHROMEOS) += load_firmware_fw.o 17 COBJS-$(CONFIG_CHROMEOS) += load_firmware_fw.o
18 COBJS-$(CONFIG_CHROMEOS) += load_util.o
18 COBJS-$(CONFIG_CHROMEOS) += tlcl_stub.o 19 COBJS-$(CONFIG_CHROMEOS) += tlcl_stub.o
19 COBJS-$(CONFIG_CHROMEOS) += utility.o 20 COBJS-$(CONFIG_CHROMEOS) += utility.o
20 COBJS-$(CONFIG_CHROMEOS_BMPBLK) += gbb_bmpblk.o 21 COBJS-$(CONFIG_CHROMEOS_BMPBLK) += gbb_bmpblk.o
21 22
22 COBJS := $(COBJS-y) 23 COBJS := $(COBJS-y)
23 OBJS := $(addprefix $(obj),$(COBJS)) 24 OBJS := $(addprefix $(obj),$(COBJS))
24 25
25 $(LIB): $(obj).depend $(OBJS) 26 $(LIB): $(obj).depend $(OBJS)
26 $(AR) $(ARFLAGS) $@ $(OBJS) 27 $(AR) $(ARFLAGS) $@ $(OBJS)
27 28
28 ######################################################################### 29 #########################################################################
29 30
30 # defines $(obj).depend target 31 # defines $(obj).depend target
31 include $(SRCTREE)/rules.mk 32 include $(SRCTREE)/rules.mk
32 33
33 sinclude $(obj).depend 34 sinclude $(obj).depend
34 35
35 ######################################################################### 36 #########################################################################
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698