]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/arm1176/tnetv107x/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / arch / arm / cpu / arm1176 / tnetv107x / Makefile
1 #
2 # SPDX-License-Identifier:      GPL-2.0+
3 #
4
5 include $(TOPDIR)/config.mk
6
7 LIB     = $(obj)lib$(SOC).o
8
9 COBJS   += aemif.o clock.o init.o mux.o timer.o
10 SOBJS   += lowlevel_init.o
11
12 SRCS    := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
13
14 OBJS    := $(addprefix $(obj),$(COBJS) $(SOBJS))
15 START   := $(addprefix $(obj),$(START))
16
17 all:    $(obj).depend $(LIB)
18
19 $(LIB): $(OBJS)
20         $(call cmd_link_o_target, $(OBJS))
21
22 #########################################################################
23
24 # defines $(obj).depend target
25 include $(SRCTREE)/rules.mk
26
27 sinclude $(obj).depend
28
29 #########################################################################