]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/sbc8349/Makefile
board: arm: convert makefiles to Kbuild style
[people/ms/u-boot.git] / board / sbc8349 / Makefile
CommitLineData
91e25769
PG
1#
2# Copyright (c) 2006 Wind River Systems, Inc.
3#
1a459660 4# SPDX-License-Identifier: GPL-2.0+
91e25769
PG
5#
6
7include $(TOPDIR)/config.mk
8
6d8962e8 9LIB = $(obj)lib$(BOARD).o
91e25769 10
9993e196
KP
11COBJS-y += $(BOARD).o
12COBJS-$(CONFIG_PCI) += pci.o
91e25769 13
9993e196 14COBJS := $(COBJS-y)
91e25769
PG
15SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
16OBJS := $(addprefix $(obj),$(COBJS))
17SOBJS := $(addprefix $(obj),$(SOBJS))
18
19$(LIB): $(obj).depend $(OBJS)
6d8962e8 20 $(call cmd_link_o_target, $(OBJS))
91e25769 21
91e25769
PG
22#########################################################################
23
24# defines $(obj).depend target
25include $(SRCTREE)/rules.mk
26
27sinclude $(obj).depend
28
29#########################################################################