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