]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/udoo/Makefile
udoo: Add initial support for mx6q udoo board
[karo-tx-uboot.git] / board / udoo / Makefile
diff --git a/board/udoo/Makefile b/board/udoo/Makefile
new file mode 100644 (file)
index 0000000..1f0f6c7
--- /dev/null
@@ -0,0 +1,26 @@
+#
+# (C) Copyright 2013 Freescale Semiconductor, Inc.
+#
+# SPDX-License-Identifier:     GPL-2.0+
+#
+
+include $(TOPDIR)/config.mk
+
+LIB    = $(obj)lib$(BOARD).o
+
+COBJS  := udoo.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
+
+#########################################################################