diff options
author | Albert ARIBAUD | 2012-11-03 10:05:22 +0100 |
---|---|---|
committer | Albert ARIBAUD | 2012-11-03 10:05:22 +0100 |
commit | a42c87f9d831c4eb36104255766cc7897876867c (patch) | |
tree | 90dd6a5dad0e7e290d7df44cff746fb3319b3219 /board/8dtech/eco5pk/Makefile | |
parent | d598e0fe739e5a75db74cc144beabd09e3c51433 (diff) | |
parent | a956bdcb3ff759f753e3f0c5e40e58f4c3056e22 (diff) |
Merge remote-tracking branch 'u-boot-ti/master'
Diffstat (limited to 'board/8dtech/eco5pk/Makefile')
-rw-r--r-- | board/8dtech/eco5pk/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/board/8dtech/eco5pk/Makefile b/board/8dtech/eco5pk/Makefile new file mode 100644 index 00000000000..befe60aac06 --- /dev/null +++ b/board/8dtech/eco5pk/Makefile @@ -0,0 +1,43 @@ +# +# (C) Copyright 2000, 2001, 2002 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# Adapted from ti/evm/Makefile +# +# See file CREDITS for list of people who contributed to this +# project. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# + +include $(TOPDIR)/config.mk + +LIB = $(obj)lib$(BOARD).o + +COBJS := eco5pk.o + +SRCS := $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS)) + +$(LIB): $(obj).depend $(OBJS) + $(call cmd_link_o_target, $(OBJS)) + +######################################################################### + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend |