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