]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/nios2/lib/Makefile
Merge branch 'buildman' of git://git.denx.de/u-boot-x86
[karo-tx-uboot.git] / arch / nios2 / 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-y += cache.o
13
14 COBJS-y += board.o
15 COBJS-$(CONFIG_CMD_BOOTM) += bootm.o
16 COBJS-y += libgcc.o
17 COBJS-y += time.o
18
19 SRCS    := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
20 OBJS    := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
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 #########################################################################