]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/iphase4539/Makefile
52c03198a74a2162e5327b871e5f7eb1393dd91d
[people/ms/u-boot.git] / board / iphase4539 / Makefile
1 #
2 # (C) Copyright 2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # (C) Copyright 2002 Wolfgang Grandegger <wg@denx.de>
6 #
7 # SPDX-License-Identifier: GPL-2.0+
8 #
9
10 include $(TOPDIR)/config.mk
11
12 LIB = $(obj)lib$(BOARD).o
13
14 COBJS := $(BOARD).o flash.o
15
16 SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
17 OBJS := $(addprefix $(obj),$(COBJS))
18 SOBJS := $(addprefix $(obj),$(SOBJS))
19
20 $(LIB): $(obj).depend $(OBJS)
21 $(call cmd_link_o_target, $(OBJS))
22
23 #########################################################################
24
25 # defines $(obj).depend target
26 include $(SRCTREE)/rules.mk
27
28 sinclude $(obj).depend
29
30 #########################################################################