]> git.ipfire.org Git - people/ms/u-boot.git/blame - test/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-mips
[people/ms/u-boot.git] / test / Makefile
CommitLineData
a72007d9
SG
1#
2# (C) Copyright 2012 The Chromium Authors
3#
1a459660 4# SPDX-License-Identifier: GPL-2.0+
a72007d9
SG
5#
6
7include $(TOPDIR)/config.mk
8
9LIB = $(obj)libtest.o
10
11COBJS-$(CONFIG_SANDBOX) += command_ut.o
12
13COBJS := $(sort $(COBJS-y))
14SRCS := $(COBJS:.o=.c)
15OBJS := $(addprefix $(obj),$(COBJS))
16
17all: $(LIB) $(XOBJS)
18
19$(LIB): $(obj).depend $(OBJS)
20 $(call cmd_link_o_target, $(OBJS))
21
22#########################################################################
23
24# defines $(obj).depend target
25include $(SRCTREE)/rules.mk
26
27sinclude $(obj).depend
28
29#########################################################################