diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-06-25 00:57:37 -0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-06-25 09:10:49 +0300 |
commit | 5319b84974fcb71504aed2d1b8285e9c0a4a4bb8 (patch) | |
tree | aa1f5fc2e0a785c1d5f65899b93ed817a23890c5 /lib | |
parent | 352d17fc103848bc511b31c3c7d9307f0c9afb02 (diff) | |
download | mtd-utils-5319b84974fcb71504aed2d1b8285e9c0a4a4bb8.tar.gz |
punt redundant libcrc32v1.4.5
The libcrc32.a is only used in one place: mkfs.ubifs. But this also
uses libmtd.a, and the only file in libcrc32.a is also in libmtd.a.
So libcrc32.a itself is completely redundant. Punt!
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Makefile b/lib/Makefile index 9de6a7d..9b01d32 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -6,12 +6,11 @@ SUBDIRS = # CFLAGS += -Werror CPPFLAGS += -I../include -LIBS = libmtd libcrc32 -TARGETS = libmtd.a libcrc32.a +LIBS = libmtd +TARGETS = libmtd.a include ../common.mk -$(BUILDDIR)/libcrc32.a: $(addprefix $(BUILDDIR)/, libcrc32.o) $(BUILDDIR)/libmtd.a: $(addprefix $(BUILDDIR)/,\ libmtd.o libmtd_legacy.o libcrc32.o libfec.o) |