]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/ronetix/pm9g45/Makefile
2810fcf8d72fe88955f0c885250f1dd1ace7b55c
[karo-tx-uboot.git] / board / ronetix / pm9g45 / Makefile
1 #
2 # (C) Copyright 2003-2008
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # (C) Copyright 2008
6 # Stelian Pop <stelian@popies.net>
7 # Lead Tech Design <www.leadtechdesign.com>
8 #
9 # SPDX-License-Identifier:      GPL-2.0+
10 #
11
12 include $(TOPDIR)/config.mk
13
14 LIB     = $(obj)lib$(BOARD).o
15
16 COBJS-y += pm9g45.o
17
18 SRCS    := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
19 OBJS    := $(addprefix $(obj),$(COBJS-y))
20 SOBJS   := $(addprefix $(obj),$(SOBJS))
21
22 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
23         $(call cmd_link_o_target, $(OBJS) $(SOBJS))
24
25 #########################################################################
26
27 # defines $(obj).depend target
28 include $(SRCTREE)/rules.mk
29
30 sinclude $(obj).depend
31
32 #########################################################################