]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/cm-bf548/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / cm-bf548 / Makefile
CommitLineData
8b219cf0
MF
1#
2# U-boot - Makefile
3#
4# Copyright (c) 2005-2008 Analog Device Inc.
5#
6# (C) Copyright 2000-2006
7# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8#
1a459660 9# SPDX-License-Identifier: GPL-2.0+
8b219cf0
MF
10#
11
12include $(TOPDIR)/config.mk
13
6d8962e8 14LIB = $(obj)lib$(BOARD).o
8b219cf0
MF
15
16COBJS-y := $(BOARD).o
17COBJS-$(CONFIG_VIDEO) += video.o
18
19SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
20OBJS := $(addprefix $(obj),$(COBJS-y))
21SOBJS := $(addprefix $(obj),$(SOBJS-y))
22
9ff67e5e 23$(LIB): $(obj).depend $(OBJS) $(SOBJS)
6d8962e8 24 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
8b219cf0 25
8b219cf0
MF
26#########################################################################
27
28# defines $(obj).depend target
29include $(SRCTREE)/rules.mk
30
31sinclude $(obj).depend
32
33#########################################################################