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