]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - lib/lzo/Makefile
Merge branch 'u-boot/master' into u-boot-arm/master
[karo-tx-uboot.git] / lib / lzo / Makefile
1 #
2 # (C) Copyright 2008
3 # Stefan Roese, DENX Software Engineering, sr@denx.de.
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8 include $(TOPDIR)/config.mk
9
10 LIB     = $(obj)liblzo.o
11
12 SOBJS   =
13
14 COBJS-$(CONFIG_LZO) += lzo1x_decompress.o
15
16 COBJS   = $(COBJS-y)
17 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
18 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS))
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 #########################################################################