diff options
| author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-02-19 14:54:17 +0200 | 
|---|---|---|
| committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-02-19 16:41:16 +0200 | 
| commit | 86dd9696d3a1acb036d65909d93d73455b8aed3a (patch) | |
| tree | 9e8bb6797b3bebd0bf83ae1fab2151a6dfeafe6a /ubi-utils/Makefile | |
| parent | ef644090223e5983ca2492850354c1390e3368d1 (diff) | |
Revert ubi-tools changes
Restore ubi tools to their "original" state, which means to
the state they were before I stareted cleaning them up.
Instead, create a "new-utils" subdirectory and move my work
there.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'ubi-utils/Makefile')
| -rw-r--r-- | ubi-utils/Makefile | 95 | 
1 files changed, 62 insertions, 33 deletions
| diff --git a/ubi-utils/Makefile b/ubi-utils/Makefile index 8d4412d..7c573e0 100644 --- a/ubi-utils/Makefile +++ b/ubi-utils/Makefile @@ -2,7 +2,7 @@  # Makefile for ubi-utils  # -OPTFLAGS := -O2 -Wall +OPTFLAGS := -O2 -g -Wall  KERNELHDR := ../include  DESTDIR := /usr/local  SBINDIR=/usr/sbin @@ -10,53 +10,82 @@ MANDIR=/usr/man  INCLUDEDIR=/usr/include  CC := $(CROSS)gcc -CFLAGS := -Iinclude -Isrc -I$(KERNELHDR) $(OPTFLAGS) -Werror -Wall +CFLAGS := -I./inc -I./src -I$(KERNELHDR) $(OPTFLAGS) -Werror \ +	-Wwrite-strings -W -std=gnu99 -DPACKAGE_VERSION=\"1.0\" -LIBS = libubi libubigen libiniparser -UTILS = ubiupdate ubimkvol ubirmvol ubicrc32 ubinfo ubiattach ubidetach ubinize +PERLPROGS = mkpfi ubicrc32.pl +TARGETS = ubiupdatevol ubimkvol ubirmvol pfiflash pddcustomize ubimirror \ +	bin2nand nand2bin ubigen mkbootenv unubi pfi2bin ubicrc32 -vpath %.c src +vpath   %.c ./src -all: $(UTILS) +%: %.o +	$(CC) $(LDFLAGS) -g -o $@ $^ -# The below cancels existing implicite rule to make programs from .c files, -# in order to force make using our rule defined below -%: %.c - -# The below is the rule to get an .o file from a .c file  %.o: %.c -	$(CC) $(CFLAGS) $< -c -o $@ +	$(CC) $(CFLAGS) -g -c -o $@ $< -g -Wp,-MD,.$(shell basename $<).dep -# And the below is the rule to get final executable from its .o and common.o -%: libubi %.o common.o -	$(CC) $(CFLAGS) $(filter %.o, $^) -L. -lubi -o $@ +all: $(TARGETS) +	make -C new-utils -ubicrc32: ubicrc32.o crc32.o -	$(CC) $(CFLAGS) -o $@ $^ +IGNORE=${wildcard .*.c.dep} +-include ${IGNORE} -ubinize: ubinize.o common.o crc32.o libiniparser libubigen -	$(CC) $(CFLAGS) $(filter %.o, $^) -L. -liniparser -lubigen -o $@ +clean: +	rm -rf *.o $(TARGETS) .*.c.dep +	make -C new-utils clean -libubi: libubi.o -	$(AR) crv $@.a $^ -	ranlib $@.a +ubiupdatevol: ubiupdatevol.o error.o libubi.o +	$(CC) $(LDFLAGS) -o $@ $^ -libubigen: libubigen.o -	$(AR) crv $@.a $^ -	ranlib $@.a +ubimkvol: ubimkvol.o error.o libubi.o +	$(CC) $(LDFLAGS) -o $@ $^ -libiniparser: libiniparser.o dictionary.o -	$(AR) crv $@.a $^ -	ranlib $@.a +ubirmvol: ubirmvol.o error.o libubi.o +	$(CC) $(LDFLAGS) -o $@ $^ -clean: -	rm -rf *.o $(addsuffix .a, $(LIBS)) $(UTILS) .*.c.dep +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: ${UTILS} +install: ${TARGETS}  	mkdir -p ${DESTDIR}/${SBINDIR} -	install -m0755 ${UTILS} ${DESTDIR}/${SBINDIR}/ +	install -m0755 ${TARGETS} ${DESTDIR}/${SBINDIR}/ +	(cd perl && install ${PERLPROGS} ${DESTDIR}/${SBINDIR}/) +	make -C new-utils install  uninstall: -	for file in ${UTILS}; do \ +	for file in ${TARGETS} ${PERLPROGS}; do \  		$(RM) ${DESTDIR}/${SBINDIR}/$$file; \  	done +	make -C new-utils uninstall | 
