]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - lib/lzma/Makefile
karo: tx48: only print message about cpu_clk, if it was actually changed
[karo-tx-uboot.git] / lib / lzma / Makefile
1 #
2 # Copyright (C) 2007-2008 Industrie Dial Face S.p.A.
3 # Luigi 'Comio' Mantellini (luigi.mantellini@idf-hit.com)
4 #
5 # (C) Copyright 2003-2006
6 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 #
8 # SPDX-License-Identifier:      GPL-2.0+
9 #
10
11 include $(TOPDIR)/config.mk
12
13 LIB     = $(obj)liblzma.o
14
15 SOBJS   =
16
17 CFLAGS += -D_LZMA_PROB32
18
19 COBJS-$(CONFIG_LZMA) += LzmaDec.o LzmaTools.o
20
21 COBJS   = $(COBJS-y)
22 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
23 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS))
24
25 $(LIB): $(obj).depend $(OBJS)
26         $(call cmd_link_o_target, $(OBJS))
27
28 #########################################################################
29
30 # defines $(obj).depend target
31 include $(SRCTREE)/rules.mk
32
33 sinclude $(obj).depend
34
35 #########################################################################