diff options
| -rw-r--r-- | arch/nios2/cpu/Makefile | 30 | ||||
| -rw-r--r-- | arch/nios2/lib/Makefile | 30 | ||||
| -rw-r--r-- | board/altera/nios2-generic/Makefile | 30 | ||||
| -rw-r--r-- | board/psyent/pci5441/Makefile | 23 | ||||
| -rw-r--r-- | board/psyent/pk1c20/Makefile | 23 | 
5 files changed, 16 insertions, 120 deletions
| diff --git a/arch/nios2/cpu/Makefile b/arch/nios2/cpu/Makefile index 083447673..bdd983d3f 100644 --- a/arch/nios2/cpu/Makefile +++ b/arch/nios2/cpu/Makefile @@ -5,29 +5,7 @@  # SPDX-License-Identifier:	GPL-2.0+  # -include $(TOPDIR)/config.mk - -LIB	= $(obj)lib$(CPU).o - -START	= start.o -SOBJS	= exceptions.o -COBJS	= cpu.o interrupts.o sysid.o traps.o epcs.o -COBJS	+= fdt.o - -SRCS	:= $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) -OBJS	:= $(addprefix $(obj),$(SOBJS) $(COBJS)) -START	:= $(addprefix $(obj),$(START)) - -all:	$(obj).depend $(START) $(LIB) - -$(LIB):	$(OBJS) -	$(call cmd_link_o_target, $(OBJS)) - -######################################################################### - -# defines $(obj).depend target -include $(SRCTREE)/rules.mk - -sinclude $(obj).depend - -######################################################################### +extra-y	= start.o +obj-y	= exceptions.o +obj-y	+= cpu.o interrupts.o sysid.o traps.o epcs.o +obj-y	+= fdt.o diff --git a/arch/nios2/lib/Makefile b/arch/nios2/lib/Makefile index d5dce67ab..7cb25c0ee 100644 --- a/arch/nios2/lib/Makefile +++ b/arch/nios2/lib/Makefile @@ -5,28 +5,8 @@  # SPDX-License-Identifier:	GPL-2.0+  # -include $(TOPDIR)/config.mk - -LIB	= $(obj)lib$(ARCH).o - -SOBJS-y	+= cache.o - -COBJS-y	+= board.o -COBJS-$(CONFIG_CMD_BOOTM) += bootm.o -COBJS-y	+= libgcc.o -COBJS-y	+= time.o - -SRCS	:= $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) -OBJS	:= $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) - -$(LIB):	$(obj).depend $(OBJS) -	$(call cmd_link_o_target, $(OBJS)) - -######################################################################### - -# defines $(obj).depend target -include $(SRCTREE)/rules.mk - -sinclude $(obj).depend - -######################################################################### +obj-y	+= cache.o +obj-y	+= board.o +obj-$(CONFIG_CMD_BOOTM) += bootm.o +obj-y	+= libgcc.o +obj-y	+= time.o diff --git a/board/altera/nios2-generic/Makefile b/board/altera/nios2-generic/Makefile index ceaf45eb4..84c7bff80 100644 --- a/board/altera/nios2-generic/Makefile +++ b/board/altera/nios2-generic/Makefile @@ -6,32 +6,12 @@  # SPDX-License-Identifier:	GPL-2.0+  # -include $(TOPDIR)/config.mk  ifneq ($(OBJTREE),$(SRCTREE))  $(shell mkdir -p $(obj)../common)  endif -LIB	= $(obj)lib$(BOARD).o - -COBJS-y	:= $(BOARD).o -COBJS-$(CONFIG_CMD_IDE) += ../common/cfide.o -COBJS-$(CONFIG_EPLED) += ../common/epled.o -COBJS-$(CONFIG_SEVENSEG) += ../common/sevenseg.o - -SOBJS-y	:= text_base.o - -SRCS	:= $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) -OBJS	:= $(addprefix $(obj),$(COBJS-y)) -SOBJS	:= $(addprefix $(obj),$(SOBJS-y)) - -$(LIB):	$(obj).depend $(OBJS) $(SOBJS) -	$(call cmd_link_o_target, $(OBJS) $(SOBJS)) - -######################################################################### - -# defines $(obj).depend target -include $(SRCTREE)/rules.mk - -sinclude $(obj).depend - -######################################################################### +obj-y	:= nios2-generic.o +obj-$(CONFIG_CMD_IDE) += ../common/cfide.o +obj-$(CONFIG_EPLED) += ../common/epled.o +obj-$(CONFIG_SEVENSEG) += ../common/sevenseg.o +obj-y	+= text_base.o diff --git a/board/psyent/pci5441/Makefile b/board/psyent/pci5441/Makefile index 68c18b95c..9a66cfdfe 100644 --- a/board/psyent/pci5441/Makefile +++ b/board/psyent/pci5441/Makefile @@ -5,29 +5,8 @@  # SPDX-License-Identifier:	GPL-2.0+  # -include $(TOPDIR)/config.mk  ifneq ($(OBJTREE),$(SRCTREE))  $(shell mkdir -p $(obj)../common)  endif -LIB	= $(obj)lib$(BOARD).o - -COMOBJS := ../common/AMDLV065D.o - -COBJS	:= $(BOARD).o $(COMOBJS) - -SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c) -OBJS	:= $(addprefix $(obj),$(COBJS)) -SOBJS	:= $(addprefix $(obj),$(SOBJS)) - -$(LIB):	$(obj).depend $(OBJS) -	$(call cmd_link_o_target, $(OBJS)) - -######################################################################### - -# defines $(obj).depend target -include $(SRCTREE)/rules.mk - -sinclude $(obj).depend - -######################################################################### +obj-y	:= pci5441.o ../common/AMDLV065D.o diff --git a/board/psyent/pk1c20/Makefile b/board/psyent/pk1c20/Makefile index 0e704a5a5..286db94ae 100644 --- a/board/psyent/pk1c20/Makefile +++ b/board/psyent/pk1c20/Makefile @@ -5,29 +5,8 @@  # SPDX-License-Identifier:	GPL-2.0+  # -include $(TOPDIR)/config.mk  ifneq ($(OBJTREE),$(SRCTREE))  $(shell mkdir -p $(obj)../common)  endif -LIB	= $(obj)lib$(BOARD).o - -COMOBJS := ../common/AMDLV065D.o - -COBJS	:= $(BOARD).o led.o $(COMOBJS) - -SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c) -OBJS	:= $(addprefix $(obj),$(COBJS)) -SOBJS	:= $(addprefix $(obj),$(SOBJS)) - -$(LIB):	$(obj).depend $(OBJS) -	$(call cmd_link_o_target, $(OBJS)) - -######################################################################### - -# defines $(obj).depend target -include $(SRCTREE)/rules.mk - -sinclude $(obj).depend - -######################################################################### +obj-y	:= pk1c20.o led.o ../common/AMDLV065D.o |