]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/altera/socfpga_cyclone5/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / altera / socfpga_cyclone5 / Makefile
CommitLineData
77754408
DN
1#
2# (C) Copyright 2001-2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4# (C) Copyright 2010, Thomas Chou <thomas@wytron.com.tw>
5#
1a459660 6# SPDX-License-Identifier: GPL-2.0+
77754408
DN
7#
8
9include $(TOPDIR)/config.mk
10
11LIB = $(obj)lib$(BOARD).o
12
13COBJS := socfpga_cyclone5.o
14
15SRCS := $(COBJS:.o=.c)
16OBJS := $(addprefix $(obj),$(COBJS))
17
18$(LIB): $(obj).depend $(OBJS)
19 $(call cmd_link_o_target, $(OBJS))
20
21clean:
22 rm -f $(OBJS)
23
24distclean: clean
25 rm -f $(LIB) core *.bak $(obj).depend
26
27#########################################################################
28
29# defines $(obj).depend target
30include $(SRCTREE)/rules.mk
31
32sinclude $(obj).depend
33
34#########################################################################