diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-09-28 10:47:06 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-09-28 10:47:06 +0300 |
commit | 94a20240f9d6776619d7652013bb10131ddad1fc (patch) | |
tree | e92336c72820e7c6daa8468913fbcc523968d257 /ubi-utils/old-utils/Makefile | |
parent | 351ac23f8d468b2b9bc60dfcbaacbe3d55ec11f9 (diff) |
ubi-utils: remove old ubi-utils
The utilities are unmaintained for long time, and many of them
do not even work, just compile, and no on complains about this.
This suggests they are unused and we can now safely kill them.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'ubi-utils/old-utils/Makefile')
-rw-r--r-- | ubi-utils/old-utils/Makefile | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/ubi-utils/old-utils/Makefile b/ubi-utils/old-utils/Makefile deleted file mode 100644 index 6df7c06..0000000 --- a/ubi-utils/old-utils/Makefile +++ /dev/null @@ -1,59 +0,0 @@ -# -# Makefile for ubi-utils -# - -KERNELHDR := ../../include - -CFLAGS ?= -O2 -g -CPPFLAGS := -I./inc -I./src -I$(KERNELHDR) \ - -std=gnu99 -DPACKAGE_VERSION=\"1.0\" $(CPPFLAGS) - -PERLPROGS = mkpfi ubicrc32.pl - -TARGETS = pfiflash pddcustomize ubimirror bin2nand nand2bin ubigen \ - mkbootenv unubi pfi2bin - -vpath %.c ./src - -include ../../common.mk - -$(BUILDDIR)/pddcustomize: $(addprefix $(BUILDDIR)/,\ - pddcustomize.o error.o libubimirror.o bootenv.o hashmap.o \ - libubi.o crc32.o) - -$(BUILDDIR)/pfiflash: $(addprefix $(BUILDDIR)/,\ - pfiflash.o libpfiflash.o list.o reader.o error.o libubimirror.o \ - bootenv.o hashmap.o pfi.o libubi.o crc32.o) - -$(BUILDDIR)/ubimirror: $(addprefix $(BUILDDIR)/,\ - ubimirror.o error.o libubimirror.o bootenv.o hashmap.o \ - libubi.o crc32.o) - -$(BUILDDIR)/nand2bin: $(addprefix $(BUILDDIR)/,\ - nand2bin.o nandecc.o nandcorr.o) - -$(BUILDDIR)/bin2nand: $(addprefix $(BUILDDIR)/,\ - bin2nand.o error.o nandecc.o) - -$(BUILDDIR)/ubigen: $(addprefix $(BUILDDIR)/,\ - ubigen.o libubigen.o crc32.o) - -$(BUILDDIR)/mkbootenv: $(addprefix $(BUILDDIR)/,\ - mkbootenv.o bootenv.o hashmap.o error.o crc32.o) - -$(BUILDDIR)/unubi: $(addprefix $(BUILDDIR)/,\ - unubi.o crc32.o unubi_analyze.o eb_chain.o) - -$(BUILDDIR)/pfi2bin: $(addprefix $(BUILDDIR)/,\ - pfi2bin.o peb.o error.o list.o crc32.o libubigen.o bootenv.o \ - hashmap.o reader.o pfi.o) - -install:: - mkdir -p ${DESTDIR}/${SBINDIR} - install -m 0755 ${TARGETS} ${DESTDIR}/${SBINDIR}/ - (cd perl && install ${PERLPROGS} ${DESTDIR}/${SBINDIR}/) - -uninstall: - for file in ${TARGETS} ${PERLPROGS}; do \ - $(RM) ${DESTDIR}/${SBINDIR}/$$file; \ - done |