xref: /openbmc/u-boot/board/spear/spear600/Makefile (revision cb3761ea)
1#
2# (C) Copyright 2000-2004
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# SPDX-License-Identifier:	GPL-2.0+
6#
7
8include $(TOPDIR)/config.mk
9
10LIB	= $(obj)lib$(BOARD).o
11
12ifndef CONFIG_SPL_BUILD
13COBJS	:= spear600.o
14endif
15SOBJS	:=
16
17SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
18OBJS	:= $(addprefix $(obj),$(COBJS))
19SOBJS	:= $(addprefix $(obj),$(SOBJS))
20
21$(LIB):	$(obj).depend $(OBJS) $(SOBJS)
22	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
23
24#########################################################################
25
26# defines $(obj).depend target
27include $(SRCTREE)/rules.mk
28
29sinclude $(obj).depend
30
31#########################################################################
32