]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/arm/cpu/arm926ejs/nomadik/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[thirdparty/u-boot.git] / arch / arm / cpu / arm926ejs / nomadik / Makefile
CommitLineData
d5254f14
AR
1#
2# (C) Copyright 2000-2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
d5254f14
AR
6#
7
8include $(TOPDIR)/config.mk
9
6d8962e8 10LIB = $(obj)lib$(SOC).o
d5254f14 11
60cbfbfd 12COBJS = timer.o gpio.o
d5254f14
AR
13SOBJS = reset.o
14
15SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
16OBJS := $(addprefix $(obj),$(COBJS)) $(addprefix $(obj),$(SOBJS))
17
18all: $(obj).depend $(LIB)
19
20$(LIB): $(OBJS)
6d8962e8 21 $(call cmd_link_o_target, $(OBJS))
d5254f14
AR
22
23#########################################################################
24
25# defines $(obj).depend target
26include $(SRCTREE)/rules.mk
27
28sinclude $(obj).depend
29
30#########################################################################