]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/isee/igep0033/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-video
[karo-tx-uboot.git] / board / isee / igep0033 / Makefile
1 #
2 # Makefile
3 #
4 # Copyright (C) 2013, ISEE 2007 SL - http://www.isee.biz/
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation; either version 2 of
9 # the License, or (at your option) any later version.
10 #
11 # This program is distributed "as is" WITHOUT ANY WARRANTY of any
12 # kind, whether express or implied; without even the implied warranty
13 # of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16
17 include $(TOPDIR)/config.mk
18
19 LIB     = $(obj)lib$(BOARD).o
20
21 ifdef CONFIG_SPL_BUILD
22 COBJS   := mux.o
23 endif
24
25 COBJS   += board.o
26 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
27 OBJS    := $(addprefix $(obj),$(COBJS))
28 SOBJS   := $(addprefix $(obj),$(SOBJS))
29
30 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
31         $(call cmd_link_o_target, $(OBJS) $(SOBJS))
32
33 clean:
34         rm -f $(SOBJS) $(OBJS)
35
36 distclean:      clean
37         rm -f $(LIB) core *.bak $(obj).depend
38
39 #########################################################################
40
41 # defines $(obj).depend target
42 include $(SRCTREE)/rules.mk
43
44 sinclude $(obj).depend
45
46 #########################################################################