]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/gaisler/gr_ep2s60/Makefile
blackfin: Move machine specific gpio_port_t structure back to blackfin arch folder.
[karo-tx-uboot.git] / board / gaisler / gr_ep2s60 / Makefile
1
2 #
3 # (C) Copyright 2003-2006
4 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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   := $(BOARD).o
14
15 #flash.o
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 #########################################################################