diff options
Diffstat (limited to 'board/schulercontrol')
| -rw-r--r-- | board/schulercontrol/sc_sps_1/Makefile | 23 | 
1 files changed, 2 insertions, 21 deletions
| diff --git a/board/schulercontrol/sc_sps_1/Makefile b/board/schulercontrol/sc_sps_1/Makefile index 81482e30d..df72fc9f5 100644 --- a/board/schulercontrol/sc_sps_1/Makefile +++ b/board/schulercontrol/sc_sps_1/Makefile @@ -5,27 +5,8 @@  # SPDX-License-Identifier:	GPL-2.0+  # -include $(TOPDIR)/config.mk - -LIB	= $(obj)lib$(BOARD).o -  ifndef	CONFIG_SPL_BUILD -COBJS	:= sc_sps_1.o +obj-y	:= sc_sps_1.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 - -######################################################################### |