]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/sparc/lib/Makefile
Merge branch 'u-boot/master' into u-boot-arm/master
[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 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
18 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS))
19
20 $(LIB): $(obj).depend $(OBJS)
21         $(call cmd_link_o_target, $(OBJS))
22
23 #########################################################################
24
25 # defines $(obj).depend target
26 include $(SRCTREE)/rules.mk
27
28 sinclude $(obj).depend
29
30 #########################################################################