]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/m68k/cpu/mcf547x_8x/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / m68k / cpu / mcf547x_8x / Makefile
CommitLineData
570c0186
TL
1#
2# (C) Copyright 2000-2004
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
570c0186
TL
6#
7
8include $(TOPDIR)/config.mk
9
10# CFLAGS += -DET_DEBUG
11
aa2bd9b0 12LIB = $(obj)lib$(CPU).o
570c0186
TL
13
14START =
15COBJS = cpu.o speed.o cpu_init.o pci.o interrupts.o slicetimer.o
16
17SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
18OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
19START := $(addprefix $(obj),$(START))
20
21all: $(obj).depend $(START) $(LIB)
22
23$(LIB): $(OBJS)
6d8962e8 24 $(call cmd_link_o_target, $(OBJS))
570c0186
TL
25
26#########################################################################
27
28include $(SRCTREE)/rules.mk
29
30sinclude $(obj).depend
31
32#########################################################################