]> Git Repo - u-boot.git/blame - test/Makefile
dts/Makefile: simplify dtc invocation
[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#########################################################################
This page took 0.058496 seconds and 4 git commands to generate.