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