]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/icecube/Makefile
karo: tx6: factor out PMIC initialization
[karo-tx-uboot.git] / board / icecube / Makefile
1
2 #
3 # (C) Copyright 2003-2006
4 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 #
6 # SPDX-License-Identifier:      GPL-2.0+
7 #
8
9 include $(TOPDIR)/config.mk
10
11 LIB     = $(obj)lib$(BOARD).o
12
13 COBJS   := $(BOARD).o flash.o
14
15 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
16 OBJS    := $(addprefix $(obj),$(COBJS))
17 SOBJS   := $(addprefix $(obj),$(SOBJS))
18
19 $(LIB): $(obj).depend $(OBJS)
20         $(call cmd_link_o_target, $(OBJS))
21
22 #########################################################################
23
24 # defines $(obj).depend target
25 include $(SRCTREE)/rules.mk
26
27 sinclude $(obj).depend
28
29 #########################################################################