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

Side by Side Diff: Makefile

Issue 6683023: Add Infineon v05 TPM driver (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/u-boot-next.git@chromeos-v2010.09
Patch Set: Fix nits Created 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | common/cmd_vboot.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (c) 2010, Code Aurora Forum. All rights reserved. 2 # Copyright (c) 2010, Code Aurora Forum. All rights reserved.
3 # (C) Copyright 2000-2010 3 # (C) Copyright 2000-2010
4 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 # 5 #
6 # See file CREDITS for list of people who contributed to this 6 # See file CREDITS for list of people who contributed to this
7 # project. 7 # project.
8 # 8 #
9 # This program is free software; you can redistribute it and/or 9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as 10 # modify it under the terms of the GNU General Public License as
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 endif 239 endif
240 LIBS += drivers/rtc/librtc.a 240 LIBS += drivers/rtc/librtc.a
241 LIBS += drivers/serial/libserial.a 241 LIBS += drivers/serial/libserial.a
242 LIBS += drivers/twserial/libtws.a 242 LIBS += drivers/twserial/libtws.a
243 LIBS += drivers/usb/gadget/libusb_gadget.a 243 LIBS += drivers/usb/gadget/libusb_gadget.a
244 LIBS += drivers/usb/host/libusb_host.a 244 LIBS += drivers/usb/host/libusb_host.a
245 LIBS += drivers/usb/musb/libusb_musb.a 245 LIBS += drivers/usb/musb/libusb_musb.a
246 LIBS += drivers/usb/phy/libusb_phy.a 246 LIBS += drivers/usb/phy/libusb_phy.a
247 LIBS += drivers/video/libvideo.a 247 LIBS += drivers/video/libvideo.a
248 LIBS += drivers/watchdog/libwatchdog.a 248 LIBS += drivers/watchdog/libwatchdog.a
249 LIBS += drivers/tpm/libtpm.a
249 LIBS += common/libcommon.a 250 LIBS += common/libcommon.a
250 LIBS += lib/libfdt/libfdt.a 251 LIBS += lib/libfdt/libfdt.a
251 LIBS += api/libapi.a 252 LIBS += api/libapi.a
252 LIBS += post/libpost.a 253 LIBS += post/libpost.a
253 254
254 ifeq ($(SOC),omap3) 255 ifeq ($(SOC),omap3)
255 LIBS += $(CPUDIR)/omap-common/libomap-common.a 256 LIBS += $(CPUDIR)/omap-common/libomap-common.a
256 endif 257 endif
257 ifeq ($(SOC),omap4) 258 ifeq ($(SOC),omap4)
258 LIBS += $(CPUDIR)/omap-common/libomap-common.a 259 LIBS += $(CPUDIR)/omap-common/libomap-common.a
(...skipping 2361 matching lines...) Expand 10 before | Expand all | Expand 10 after
2620 mrproper \ 2621 mrproper \
2621 distclean: clobber unconfig 2622 distclean: clobber unconfig
2622 rm -rf $(obj)* 2623 rm -rf $(obj)*
2623 endif 2624 endif
2624 2625
2625 backup: 2626 backup:
2626 F=`basename $(TOPDIR)` ; cd .. ; \ 2627 F=`basename $(TOPDIR)` ; cd .. ; \
2627 gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F 2628 gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2628 2629
2629 ######################################################################### 2630 #########################################################################
OLDNEW
« no previous file with comments | « no previous file | common/cmd_vboot.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698