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