X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=board%2Fcreative%2Fxfi3%2FMakefile;h=67d68dd6218db748d991bef57717a2be5ac43271;hb=a2a1474674df7c924d7a328b6afb665ab7c4a26a;hp=4dc2b4805382a0789bb95026deef63e7ed8a3134;hpb=5a9120439416a9101dec7c7dc65bb75a5ff09c4e;p=oweals%2Fu-boot.git diff --git a/board/creative/xfi3/Makefile b/board/creative/xfi3/Makefile index 4dc2b48053..67d68dd621 100644 --- a/board/creative/xfi3/Makefile +++ b/board/creative/xfi3/Makefile @@ -1,31 +1,10 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2000-2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# -# SPDX-License-Identifier: GPL-2.0+ -# - -include $(TOPDIR)/config.mk - -LIB = $(obj)lib$(BOARD).o ifndef CONFIG_SPL_BUILD -COBJS := xfi3.o +obj-y := xfi3.o else -COBJS := spl_boot.o +obj-y := spl_boot.o endif - -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 - -#########################################################################