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