]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/st-ericsson/snowball/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / st-ericsson / snowball / Makefile
1 #
2 # Copyright (C) ST-Ericsson SA 2009
3 #
4 # SPDX-License-Identifier: GPL-2.0+
5 #
6
7 include $(TOPDIR)/config.mk
8
9 CFLAGS += -D__RELEASE -D__STN_8500
10 LIB = $(obj)lib$(BOARD).o
11
12 COBJS := snowball.o
13
14 SRCS := $(COBJS:.o=.c)
15 OBJS := $(addprefix $(obj),$(COBJS))
16
17 $(LIB): $(obj).depend $(OBJS)
18 $(call cmd_link_o_target, $(OBJS))
19
20 clean:
21 rm -f $(OBJS)
22
23 distclean: clean
24 rm -f $(LIB) core *.bak $(obj).depend
25
26 #########################################################################
27
28 # defines $(obj).depend target
29 include $(SRCTREE)/rules.mk
30
31 sinclude $(obj).depend
32
33 #########################################################################