]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/twserial/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / drivers / twserial / Makefile
1 #
2 # (C) Copyright 2009
3 # Detlev Zundel, DENX Software Engineering, dzu@denx.de.
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8 include $(TOPDIR)/config.mk
9
10 LIB     := $(obj)libtws.o
11
12 COBJS-$(CONFIG_SOFT_TWS) += soft_tws.o
13
14 COBJS   := $(COBJS-y)
15 SRCS    := $(COBJS:.o=.c)
16 OBJS    := $(addprefix $(obj),$(COBJS))
17
18 all:    $(LIB)
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 #########################################################################