]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/Marvell/dreamplug/Makefile
blackfin: Move machine specific gpio_port_t structure back to blackfin arch folder.
[karo-tx-uboot.git] / board / Marvell / dreamplug / Makefile
1 #
2 # (C) Copyright 2011
3 # Jason Cooper <u-boot@lakedaemon.net>
4 #
5 # Based on work by:
6 # Marvell Semiconductor <www.marvell.com>
7 # Written-by: Siddarth Gore <gores@marvell.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   := dreamplug.o
17
18 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
19 OBJS    := $(addprefix $(obj),$(COBJS))
20 SOBJS   := $(addprefix $(obj),$(SOBJS))
21
22 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
23         $(call cmd_link_o_target, $(OBJS) $(SOBJS))
24
25 clean:
26         rm -f $(SOBJS) $(OBJS)
27
28 distclean:      clean
29         rm -f $(LIB) core *.bak .depend
30
31 #########################################################################
32
33 # defines $(obj).depend target
34 include $(SRCTREE)/rules.mk
35
36 sinclude $(obj).depend
37
38 #########################################################################