]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - test/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / test / Makefile
1 #
2 # (C) Copyright 2012 The Chromium Authors
3 #
4 # SPDX-License-Identifier:      GPL-2.0+
5 #
6
7 include $(TOPDIR)/config.mk
8
9 LIB     = $(obj)libtest.o
10
11 COBJS-$(CONFIG_SANDBOX) += command_ut.o
12 COBJS-$(CONFIG_SANDBOX) += compression.o
13
14 COBJS   := $(sort $(COBJS-y))
15 SRCS    := $(COBJS:.o=.c)
16 OBJS    := $(addprefix $(obj),$(COBJS))
17
18 all:    $(LIB) $(XOBJS)
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 #########################################################################