]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/spear/common/Makefile
i2c: muxes: add i2c gpio multiplexer driver
[people/ms/u-boot.git] / board / spear / common / Makefile
index 6e397eeff0d685da635351cc6feec5e19fb515a9..b0ba320481b68c5eaca959193e48553d1b0a6ba6 100644 (file)
@@ -5,30 +5,10 @@
 # SPDX-License-Identifier:     GPL-2.0+
 #
 
-include $(TOPDIR)/config.mk
-
-ifneq ($(OBJTREE),$(SRCTREE))
-$(shell mkdir -p $(obj)board/$(VENDOR)/common)
+ifdef CONFIG_SPL_BUILD
+# necessary to create built-in.o
+obj- := __dummy__.o
+else
+obj-y  := spr_misc.o
+obj-y  += spr_lowlevel_init.o
 endif
-
-LIB    = $(obj)lib$(VENDOR).o
-
-ifndef CONFIG_SPL_BUILD
-COBJS  := spr_misc.o
-SOBJS  := spr_lowlevel_init.o
-endif
-
-SRCS   := $(SOBJS:.o=.S) $(COBJS:.o=.c)
-OBJS   := $(addprefix $(obj),$(COBJS))
-SOBJS  := $(addprefix $(obj),$(SOBJS))
-
-$(LIB):        $(obj).depend $(OBJS) $(SOBJS)
-       $(call cmd_link_o_target, $(OBJS) $(SOBJS))
-
-#########################################################################
-# This is for $(obj).depend target
-include $(SRCTREE)/rules.mk
-
-sinclude $(obj).depend
-
-#########################################################################