diff options
author | Andreas Bießmann <andreas.devel@googlemail.com> | 2012-09-04 11:33:29 +0000 |
---|---|---|
committer | Andreas Bießmann <andreas.devel@googlemail.com> | 2012-09-13 13:33:11 +0200 |
commit | a420dfe2b017db321ad9b4058d38e216b756465f (patch) | |
tree | b873a18e7cb7324e51d74dd04432abb4bc135fc5 /board/atmel/atngw100mkii/Makefile | |
parent | 93691842e8dc86e6b2cb148c7c60a168654bbc34 (diff) | |
download | u-boot-imx-a420dfe2b017db321ad9b4058d38e216b756465f.zip u-boot-imx-a420dfe2b017db321ad9b4058d38e216b756465f.tar.gz u-boot-imx-a420dfe2b017db321ad9b4058d38e216b756465f.tar.bz2 |
avr32: add atngw100mkii board
This patch is derived from an older patch provided by atmel in its
buildroot-avr32-v3.0.0.tar.bz2
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
cc: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Acked-by: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Diffstat (limited to 'board/atmel/atngw100mkii/Makefile')
-rw-r--r-- | board/atmel/atngw100mkii/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/board/atmel/atngw100mkii/Makefile b/board/atmel/atngw100mkii/Makefile new file mode 100644 index 0000000..7fbd20d --- /dev/null +++ b/board/atmel/atngw100mkii/Makefile @@ -0,0 +1,40 @@ +# +# Copyright (C) 2005-2006 Atmel Corporation +# +# 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 := $(BOARD).o + +SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) + +$(LIB): $(obj).depend $(OBJS) + $(call cmd_link_o_target, $(OBJS)) + +######################################################################### + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend + +######################################################################### |