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

Side by Side Diff: board/tegra2/seaboard/Makefile

Issue 4841001: Tegra2: implement Warmboot code and lp0_vec (Closed) Base URL: http://git.chromium.org/git/u-boot-next.git@chromeos-v2010.09
Patch Set: Add GPL headers & fix some 80-column issues Created 10 years, 1 month 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 | « board/tegra2/harmony/Makefile ('k') | include/configs/chromeos/tegra2/common.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 # 1 #
2 # (C) Copyright 2010 2 # (C) Copyright 2010
3 # NVIDIA Corporation <www.nvidia.com> 3 # NVIDIA Corporation <www.nvidia.com>
4 # 4 #
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 20 matching lines...) Expand all
31 COBJS += $(BOARD)_kbc.o 31 COBJS += $(BOARD)_kbc.o
32 endif 32 endif
33 COBJS += ../common/board.o 33 COBJS += ../common/board.o
34 COBJS += ../common/sdmmc/nvboot_sdmmc.o 34 COBJS += ../common/sdmmc/nvboot_sdmmc.o
35 COBJS += ../common/sdmmc/nvboot_reset.o 35 COBJS += ../common/sdmmc/nvboot_reset.o
36 COBJS += ../common/sdmmc/nvboot_util.o 36 COBJS += ../common/sdmmc/nvboot_util.o
37 COBJS += ../common/sdmmc/nvboot_clocks.o 37 COBJS += ../common/sdmmc/nvboot_clocks.o
38 COBJS += ../common/sdmmc/nvboot_pads.o 38 COBJS += ../common/sdmmc/nvboot_pads.o
39 COBJS += ../common/sdmmc/nvboot_pinmux.o 39 COBJS += ../common/sdmmc/nvboot_pinmux.o
40 COBJS += ../common/sdmmc/nvboot_pinmux_tables.o 40 COBJS += ../common/sdmmc/nvboot_pinmux_tables.o
41 ifdef CONFIG_TEGRA2_LP0
42 COBJS += ../common/crypto/aes_ref.o
43 COBJS += ../common/crypto/crypto.o
44 endif
41 45
42 SRCS := $(COBJS:.o=.c) 46 SRCS := $(COBJS:.o=.c)
43 OBJS := $(addprefix $(obj),$(COBJS)) 47 OBJS := $(addprefix $(obj),$(COBJS))
44 48
45 $(LIB): $(obj).depend $(OBJS) 49 $(LIB): $(obj).depend $(OBJS)
46 $(AR) $(ARFLAGS) $@ $(OBJS) 50 $(AR) $(ARFLAGS) $@ $(OBJS)
47 51
48 clean: 52 clean:
49 rm -f $(OBJS) 53 rm -f $(OBJS)
50 54
51 distclean: clean 55 distclean: clean
52 rm -f $(LIB) core *.bak $(obj).depend 56 rm -f $(LIB) core *.bak $(obj).depend
53 57
54 ######################################################################### 58 #########################################################################
55 59
56 # defines $(obj).depend target 60 # defines $(obj).depend target
57 include $(SRCTREE)/rules.mk 61 include $(SRCTREE)/rules.mk
58 62
59 sinclude $(obj).depend 63 sinclude $(obj).depend
60 64
61 ######################################################################### 65 #########################################################################
OLDNEW
« no previous file with comments | « board/tegra2/harmony/Makefile ('k') | include/configs/chromeos/tegra2/common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698