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