]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/cpu/armv7/omap4/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / arm / cpu / armv7 / omap4 / Makefile
CommitLineData
d34efc76
SS
1#
2# (C) Copyright 2000-2010
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
d34efc76
SS
6#
7
8include $(TOPDIR)/config.mk
9
6d8962e8 10LIB = $(obj)lib$(SOC).o
d34efc76 11
2ae610f0 12COBJS += sdram_elpida.o
508a58fa 13COBJS += hwinit.o
bb772a59 14COBJS += emif.o
01b753ff
S
15COBJS += prcm-regs.o
16COBJS += hw_data.o
d34efc76
SS
17
18SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
19OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS))
20
21all: $(obj).depend $(LIB)
22
23$(LIB): $(OBJS)
6d8962e8 24 $(call cmd_link_o_target, $(OBJS))
d34efc76
SS
25
26#########################################################################
27
28# defines $(obj).depend target
29include $(SRCTREE)/rules.mk
30
31sinclude $(obj).depend
32
33#########################################################################