]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/palmld/Makefile
44a8ad8e010d45d2bdc0f01ff1905239aa0e8ea5
[karo-tx-uboot.git] / board / palmld / Makefile
1 #
2 # Palm LifeDrive Support
3 #
4 # Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com>
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   := palmld.o
14
15 SRCS    := $(COBJS:.o=.c)
16 OBJS    := $(addprefix $(obj),$(COBJS))
17
18 $(LIB): $(obj).depend $(OBJS)
19         $(call cmd_link_o_target, $(OBJS))
20
21 #########################################################################
22
23 # defines $(obj).depend target
24 include $(SRCTREE)/rules.mk
25
26 sinclude $(obj).depend
27
28 #########################################################################