]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/ms7722se/Makefile
karo: tx53: check for <CTRL-C> only to abort certain actions
[karo-tx-uboot.git] / board / ms7722se / Makefile
1 #
2 # Copyright (C) 2007
3 # Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4 #
5 # Copyright (C) 2007
6 # Kenati Technologies, Inc.
7 #
8 # board/ms7722se/Makefile
9 #
10 # SPDX-License-Identifier:      GPL-2.0+
11
12 include $(TOPDIR)/config.mk
13
14 LIB     = $(obj)lib$(BOARD).o
15
16 COBJS   := ms7722se.o
17 SOBJS   := lowlevel_init.o
18
19 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
20 OBJS    := $(addprefix $(obj),$(COBJS))
21 SOBJS   := $(addprefix $(obj),$(SOBJS))
22
23 $(LIB): $(OBJS) $(SOBJS)
24         $(call cmd_link_o_target, $(OBJS) $(SOBJS))
25
26 #########################################################################
27
28 # defines $(obj).depend target
29 include $(SRCTREE)/rules.mk
30
31 sinclude $(obj).depend
32
33 #########################################################################