]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/sparc/lib/Makefile
sh: Do not include start.o in lib$(CPU).o
[karo-tx-uboot.git] / arch / sparc / lib / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8 include $(TOPDIR)/config.mk
9
10 LIB     = $(obj)lib$(ARCH).o
11
12 SOBJS   =
13
14 COBJS   = board.o cache.o interrupts.o time.o
15 COBJS-$(CONFIG_CMD_BOOTM) += bootm.o
16
17 COBJS := $(COBJS) $(COBJS-y)
18
19 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
20 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS))
21
22 $(LIB): $(obj).depend $(OBJS)
23         $(call cmd_link_o_target, $(OBJS))
24
25 #########################################################################
26
27 # defines $(obj).depend target
28 include $(SRCTREE)/rules.mk
29
30 sinclude $(obj).depend
31
32 #########################################################################