diff options
| author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-01-23 19:42:44 +0200 | 
|---|---|---|
| committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-01-23 20:01:03 +0200 | 
| commit | 45941c0018cc0937beeb9d4aa8e6a6070c7a3466 (patch) | |
| tree | e65cad8bac744151b047136e9643abf1e343dd97 /ubi-utils/old-tools/Makefile | |
| parent | 3ad29ab55ad71d706152781b70a43d9f6be407b9 (diff) | |
ubi-utils: return old tools
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'ubi-utils/old-tools/Makefile')
| -rw-r--r-- | ubi-utils/old-tools/Makefile | 99 | 
1 files changed, 99 insertions, 0 deletions
| diff --git a/ubi-utils/old-tools/Makefile b/ubi-utils/old-tools/Makefile new file mode 100644 index 0000000..d4c908b --- /dev/null +++ b/ubi-utils/old-tools/Makefile @@ -0,0 +1,99 @@ +# +# Makefile for ubi-utils +# + +OPTFLAGS := -O2 -Wall +KERNELHDR := ../../include +DESTDIR := /usr/local +SBINDIR=/usr/sbin +MANDIR=/usr/man +INCLUDEDIR=/usr/include + +CC := $(CROSS)gcc +CFLAGS := -I./inc -I./src -I$(KERNELHDR) $(OPTFLAGS) -Werror \ +	-Wwrite-strings -W -std=gnu99 -DPACKAGE_VERSION=\"1.0\" + +PERLPROGS = mkpfi ubicrc32.pl +TARGETS = pfiflash pddcustomize ubimirror \ +	bin2nand nand2bin ubigen mkbootenv unubi pfi2bin + +vpath   %.c ./src + +%: %.o +	$(CC) $(LDFLAGS) -g -o $@ $^ + +%.o: %.c +	$(CC) $(CFLAGS) -g -c -o $@ $< -g -Wp,-MD,.$(shell basename $<).dep + +all: $(TARGETS) libubi.a + +IGNORE=${wildcard .*.c.dep} +-include ${IGNORE} + +clean: +	rm -rf *.o $(TARGETS) .*.c.dep libubi.a + +libubi.a: libubi.o +	ar cr $@ $^ + +ubidetach: ubidetach.o common.o libubi.o +	$(CC) $(LDFLAGS) -o $@ $^ + +ubiattach: ubiattach.o common.o libubi.o +	$(CC) $(LDFLAGS) -o $@ $^ + +ubinfo: ubinfo.o common.o libubi.o +	$(CC) $(LDFLAGS) -o $@ $^ + +ubiupdate: ubiupdate.o common.o libubi.o +	$(CC) $(LDFLAGS) -o $@ $^ + +ubimkvol: ubimkvol.o common.o libubi.o +	$(CC) $(LDFLAGS) -o $@ $^ + +ubirmvol: ubirmvol.o common.o libubi.o +	$(CC) $(LDFLAGS) -o $@ $^ + +pddcustomize: pddcustomize.o error.o libubimirror.o bootenv.o hashmap.o \ +		libubi.o crc32.o +	$(CC) $(LDFLAGS) -o $@ $^ + +pfiflash: pfiflash.o libpfiflash.o list.o reader.o error.o libubimirror.o \ +		bootenv.o hashmap.o pfi.o libubi.o crc32.o +	$(CC) $(LDFLAGS) -o $@ $^ + +ubimirror: ubimirror.o error.o libubimirror.o bootenv.o hashmap.o \ +		libubi.o crc32.o +	$(CC) $(LDFLAGS) -o $@ $^ + +nand2bin: nand2bin.o nandecc.o nandcorr.o +	$(CC) $(LDFLAGS) -o $@ $^ + +bin2nand: bin2nand.o error.o nandecc.o +	$(CC) $(LDFLAGS) -o $@ $^ + +ubigen: ubigen.o libubigen.o crc32.o +	$(CC) $(LDFLAGS) -o $@ $^ + +mkbootenv: mkbootenv.o bootenv.o hashmap.o error.o crc32.o +	$(CC) $(LDFLAGS) -o $@ $^ + +unubi: unubi.o crc32.o unubi_analyze.o eb_chain.o +	$(CC) $(LDFLAGS) -o $@ $^ + +pfi2bin: pfi2bin.o peb.o error.o list.o crc32.o libubigen.o bootenv.o \ +		hashmap.o reader.o pfi.o +	$(CC) $(LDFLAGS) -o $@ $^ + +ubicrc32: ubicrc32.o crc32.o +	$(CC) $(LDFLAGS) -o $@ $^ + +install: ${TARGETS} +	mkdir -p ${DESTDIR}/${SBINDIR} +	install -m0755 ${TARGETS} ${DESTDIR}/${SBINDIR}/ +	(cd perl && install ${PERLPROGS} ${DESTDIR}/${SBINDIR}/) + +uninstall: +	for file in ${TARGETS} ${PERLPROGS}; do \ +		$(RM) ${DESTDIR}/${SBINDIR}/$$file; \ +	done | 
