]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/avionic-design/medcom-wide/Makefile
blackfin: Move machine specific gpio_port_t structure back to blackfin arch folder.
[karo-tx-uboot.git] / board / avionic-design / medcom-wide / Makefile
1 #
2 #  (C) Copyright 2010,2011
3 #  NVIDIA Corporation <www.nvidia.com>
4 #  (C) Copyright 2011,2012
5 #  Avionic Design GmbH <www.avionic-design.de>
6 #
7 # SPDX-License-Identifier:      GPL-2.0+
8 #
9
10 include $(TOPDIR)/config.mk
11
12 $(shell mkdir -p $(obj)../common $(obj)../../nvidia/common)
13
14 LIB     = $(obj)lib$(BOARD).o
15
16 COBJS-y := ../common/tamonten.o
17
18 include ../../nvidia/common/common.mk
19
20 COBJS   := $(COBJS-y)
21 SRCS    := $(COBJS:.o=.c)
22 OBJS    := $(addprefix $(obj),$(COBJS))
23
24 $(LIB): $(obj).depend $(OBJS)
25         $(call cmd_link_o_target, $(OBJS))
26
27 #########################################################################
28
29 # defines $(obj).depend target
30 include $(SRCTREE)/rules.mk
31
32 sinclude $(obj).depend
33
34 #########################################################################