summaryrefslogtreecommitdiff
path: root/board/atmel/atngw100mkii/Makefile
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2012-09-13 10:34:24 -0700
committerTom Rini <trini@ti.com>2012-09-13 10:34:24 -0700
commitf71d5cd56bee6e730fe46f5f2024f1b5106ab944 (patch)
tree09b0fd7c134094a496294cb12c8f073416def178 /board/atmel/atngw100mkii/Makefile
parentb89598a1480e015844bd0558c7bdd49ce551a0c3 (diff)
parenta420dfe2b017db321ad9b4058d38e216b756465f (diff)
downloadu-boot-imx-f71d5cd56bee6e730fe46f5f2024f1b5106ab944.zip
u-boot-imx-f71d5cd56bee6e730fe46f5f2024f1b5106ab944.tar.gz
u-boot-imx-f71d5cd56bee6e730fe46f5f2024f1b5106ab944.tar.bz2
Merge branch 'master' of git://git.denx.de/u-boot-avr32
Diffstat (limited to 'board/atmel/atngw100mkii/Makefile')
-rw-r--r--board/atmel/atngw100mkii/Makefile40
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
+
+#########################################################################