]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/arm926ejs/mx25/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / arch / arm / cpu / arm926ejs / mx25 / 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 include $(TOPDIR)/config.mk
8
9 LIB     = $(obj)lib$(SOC).o
10
11 COBJS   = generic.o timer.o reset.o
12
13 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
14 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS))
15
16 all:    $(obj).depend $(LIB)
17
18 $(LIB): $(OBJS)
19         $(call cmd_link_o_target, $(OBJS))
20
21 #########################################################################
22
23 # defines $(obj).depend target
24 include $(SRCTREE)/rules.mk
25
26 sinclude $(obj).depend
27
28 #########################################################################