blob: a071af1f6e5d737cc743fdd73f794bf181c4ea32 [file] [log] [blame]
wdenk012771d2002-03-08 21:31:05 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenk012771d2002-03-08 21:31:05 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
24include $(TOPDIR)/config.mk
25
Marian Balakowiczf9328632006-09-01 19:49:50 +020026LIB = $(obj)libjffs2.a
wdenk012771d2002-03-08 21:31:05 +000027
28AOBJS =
Grant Likelyf0037c52007-09-24 09:05:30 -060029COBJS-y += jffs2_1pass.o
30COBJS-y += compr_rtime.o
31COBJS-y += compr_rubin.o
32COBJS-y += compr_zlib.o
33COBJS-y += mini_inflate.o
34COBJS-y += compr_lzo.o
35COBJS-y += compr_lzari.o
Marian Balakowiczf9328632006-09-01 19:49:50 +020036
Grant Likelyf0037c52007-09-24 09:05:30 -060037COBJS := $(COBJS-y)
Marian Balakowiczf9328632006-09-01 19:49:50 +020038SRCS := $(AOBJS:.o=.S) $(COBJS:.o=.c)
39OBJS := $(addprefix $(obj),$(AOBJS) $(COBJS))
wdenk012771d2002-03-08 21:31:05 +000040
41#CPPFLAGS +=
42
43all: $(LIB) $(AOBJS)
44
Marian Balakowiczf9328632006-09-01 19:49:50 +020045$(LIB): $(obj).depend $(OBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +020046 $(AR) $(ARFLAGS) $@ $(OBJS)
wdenk012771d2002-03-08 21:31:05 +000047
48
49#########################################################################
50
Marian Balakowiczf9328632006-09-01 19:49:50 +020051# defines $(obj).depend target
52include $(SRCTREE)/rules.mk
wdenk012771d2002-03-08 21:31:05 +000053
Marian Balakowiczf9328632006-09-01 19:49:50 +020054sinclude $(obj).depend
wdenk012771d2002-03-08 21:31:05 +000055
56#########################################################################