| OLD | NEW |
| 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-2009 | 3 # (C) Copyright 2000-2009 |
| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 endif | 180 endif |
| 181 ifeq ($(CPU),mpc85xx) | 181 ifeq ($(CPU),mpc85xx) |
| 182 OBJS += cpu/$(CPU)/resetvec.o | 182 OBJS += cpu/$(CPU)/resetvec.o |
| 183 endif | 183 endif |
| 184 | 184 |
| 185 OBJS := $(addprefix $(obj),$(OBJS)) | 185 OBJS := $(addprefix $(obj),$(OBJS)) |
| 186 | 186 |
| 187 LIBS = lib_generic/libgeneric.a | 187 LIBS = lib_generic/libgeneric.a |
| 188 LIBS += lib_generic/lzma/liblzma.a | 188 LIBS += lib_generic/lzma/liblzma.a |
| 189 LIBS += lib_generic/lzo/liblzo.a | 189 LIBS += lib_generic/lzo/liblzo.a |
| 190 LIBS += lib_generic/chromeos/libchromeos.a |
| 190 LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \ | 191 LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \ |
| 191 "board/$(VENDOR)/common/lib$(VENDOR).a"; fi) | 192 "board/$(VENDOR)/common/lib$(VENDOR).a"; fi) |
| 192 LIBS += cpu/$(CPU)/lib$(CPU).a | 193 LIBS += cpu/$(CPU)/lib$(CPU).a |
| 193 ifdef SOC | 194 ifdef SOC |
| 194 LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a | 195 LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a |
| 195 endif | 196 endif |
| 196 ifeq ($(CPU),ixp) | 197 ifeq ($(CPU),ixp) |
| 197 LIBS += cpu/ixp/npe/libnpe.a | 198 LIBS += cpu/ixp/npe/libnpe.a |
| 198 endif | 199 endif |
| 199 LIBS += lib_$(ARCH)/lib$(ARCH).a | 200 LIBS += lib_$(ARCH)/lib$(ARCH).a |
| (...skipping 3630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3830 mrproper \ | 3831 mrproper \ |
| 3831 distclean: clobber unconfig | 3832 distclean: clobber unconfig |
| 3832 rm -rf $(obj)* | 3833 rm -rf $(obj)* |
| 3833 endif | 3834 endif |
| 3834 | 3835 |
| 3835 backup: | 3836 backup: |
| 3836 F=`basename $(TOPDIR)` ; cd .. ; \ | 3837 F=`basename $(TOPDIR)` ; cd .. ; \ |
| 3837 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F | 3838 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F |
| 3838 | 3839 |
| 3839 ######################################################################### | 3840 ######################################################################### |
| OLD | NEW |