]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/mpl/mip405/Makefile
Merge branch 'u-boot/master' into u-boot-arm/master
[people/ms/u-boot.git] / board / mpl / mip405 / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # SPDX-License-Identifier: GPL-2.0+
6 #
7
8 include $(TOPDIR)/config.mk
9 ifneq ($(OBJTREE),$(SRCTREE))
10 $(shell mkdir -p $(obj)../common)
11 endif
12
13 LIB = $(obj)lib$(BOARD).o
14
15 COBJS = $(BOARD).o cmd_mip405.o \
16 ../common/pci.o \
17 ../common/usb_uhci.o \
18 ../common/common_util.o
19
20 SOBJS = init.o
21
22 SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
23 OBJS := $(addprefix $(obj),$(COBJS))
24 SOBJS := $(addprefix $(obj),$(SOBJS))
25
26 $(LIB): $(OBJS) $(SOBJS)
27 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
28
29 #########################################################################
30
31 # defines $(obj).depend target
32 include $(SRCTREE)/rules.mk
33
34 sinclude $(obj).depend
35
36 #########################################################################