summaryrefslogtreecommitdiffstats
path: root/board/ti/am43xx/Makefile
diff options
context:
space:
mode:
authorLokesh Vutla <lokeshvutla@ti.com>2013-07-30 11:36:27 +0530
committerTom Rini <trini@ti.com>2013-08-15 08:51:10 -0400
commitfbf2728da300a96b2e2a6ba6b266bc80c8c21160 (patch)
tree0529bb960e7344596fd14aec7ade0c0892b420b9 /board/ti/am43xx/Makefile
parent32f420b8ecffee33af01ee452fa1238fa91e399f (diff)
downloadtalos-obmc-uboot-fbf2728da300a96b2e2a6ba6b266bc80c8c21160.tar.gz
talos-obmc-uboot-fbf2728da300a96b2e2a6ba6b266bc80c8c21160.zip
ARM: AM43xx: Add Board files
Add board specific information for AM43xx. Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'board/ti/am43xx/Makefile')
-rw-r--r--board/ti/am43xx/Makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/board/ti/am43xx/Makefile b/board/ti/am43xx/Makefile
new file mode 100644
index 0000000000..4a1bb7c47f
--- /dev/null
+++ b/board/ti/am43xx/Makefile
@@ -0,0 +1,38 @@
+#
+# Makefile
+#
+# Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
+#
+# SPDX-License-Identifier: GPL-2.0+
+#
+
+include $(TOPDIR)/config.mk
+
+LIB = $(obj)lib$(BOARD).o
+
+ifdef CONFIG_SPL_BUILD
+COBJS := mux.o
+endif
+
+COBJS += board.o
+SRCS := $(COBJS:.o=.c)
+OBJS := $(addprefix $(obj),$(COBJS))
+SOBJS := $(addprefix $(obj),$(SOBJS))
+
+$(LIB): $(obj).depend $(OBJS) $(SOBJS)
+ $(call cmd_link_o_target, $(OBJS) $(SOBJS))
+
+clean:
+ rm -f $(SOBJS) $(OBJS)
+
+distclean: clean
+ rm -f $(LIB) core *.bak $(obj).depend
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################
OpenPOWER on IntegriCloud