From dc08bdc559870143ba385f172f9777bc37d1e4c1 Mon Sep 17 00:00:00 2001 From: Pavel Charvat Date: Fri, 6 Dec 2013 23:11:57 +0100 Subject: [PATCH] Libucw-images: Added `ucw-' prefix to utils. --- images/Makefile | 14 +++++++------- images/{color-tool.c => ucw-color-tool.c} | 2 +- images/{image-dup-test.c => ucw-image-dup-test.c} | 2 +- images/{image-sim-test.c => ucw-image-sim-test.c} | 2 +- images/{image-tool.c => ucw-image-tool.c} | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) rename images/{color-tool.c => ucw-color-tool.c} (97%) rename images/{image-dup-test.c => ucw-image-dup-test.c} (98%) rename images/{image-sim-test.c => ucw-image-sim-test.c} (99%) rename images/{image-tool.c => ucw-image-tool.c} (99%) diff --git a/images/Makefile b/images/Makefile index 35cfbd10..f475127e 100644 --- a/images/Makefile +++ b/images/Makefile @@ -2,7 +2,7 @@ DIRS+=images -LIBIMAGES_PROGS=$(o)/images/image-tool $(o)/images/color-tool +LIBIMAGES_PROGS=$(o)/images/ucw-image-tool $(o)/images/ucw-color-tool LIBIMAGES_CONFIGS+=images LIBIMAGES_MODS=math config context image scale color io-main LIBIMAGES_INCLUDES=images.h error.h color.h math.h @@ -23,12 +23,12 @@ LIBIMAGES_DEPS+=$(o)/images/libucw-images-pic.a endif ifdef CONFIG_IMAGES_DUP -LIBIMAGES_PROGS+=$(o)/images/image-dup-test +LIBIMAGES_PROGS+=$(o)/images/ucw-image-dup-test LIBIMAGES_MODS+=dup-init dup-cmp LIBIMAGES_INCLUDES+=duplicates.h endif ifdef CONFIG_IMAGES_SIM -LIBIMAGES_PROGS+=$(o)/images/image-sim-test +LIBIMAGES_PROGS+=$(o)/images/ucw-image-sim-test LIBIMAGES_MODS+=sig-cmp endif ifneq ($(CONFIG_IMAGES_DUP)$(CONFIG_IMAGES_SIM),) @@ -73,10 +73,10 @@ $(o)/images/libucw-images.so: $(addsuffix .oo,$(addprefix $(o)/images/,$(LIBIMAG $(o)/images/libucw-images.so: SONAME_SUFFIX=.$(UCW_ABI_VERSION) $(o)/images/libucw-images.pc: $(LIBIMAGES_DEPS) -$(o)/images/image-tool: $(o)/images/image-tool.o $(LIBIMAGES) -$(o)/images/color-tool: $(o)/images/color-tool.o $(LIBIMAGES) -$(o)/images/image-dup-test: $(o)/images/image-dup-test.o $(LIBIMAGES) -$(o)/images/image-sim-test: $(o)/images/image-sim-test.o $(LIBIMAGES) +$(o)/images/ucw-image-tool: $(o)/images/ucw-image-tool.o $(LIBIMAGES) +$(o)/images/ucw-color-tool: $(o)/images/ucw-color-tool.o $(LIBIMAGES) +$(o)/images/ucw-image-dup-test: $(o)/images/ucw-image-dup-test.o $(LIBIMAGES) +$(o)/images/ucw-image-sim-test: $(o)/images/ucw-image-sim-test.o $(LIBIMAGES) TESTS+=$(o)/images/image-test.test $(o)/images/image-test: $(o)/images/image-test.o $(LIBIMAGES) diff --git a/images/color-tool.c b/images/ucw-color-tool.c similarity index 97% rename from images/color-tool.c rename to images/ucw-color-tool.c index 73d97e4c..091f982b 100644 --- a/images/color-tool.c +++ b/images/ucw-color-tool.c @@ -21,7 +21,7 @@ static void NONRET usage(void) { fputs("\ -Usage: color-tool input-color-space output-color-space\n\ +Usage: ucw-color-tool input-color-space output-color-space\n\ ", stderr); exit(1); } diff --git a/images/image-dup-test.c b/images/ucw-image-dup-test.c similarity index 98% rename from images/image-dup-test.c rename to images/ucw-image-dup-test.c index feece3d1..d5a9794f 100644 --- a/images/image-dup-test.c +++ b/images/ucw-image-dup-test.c @@ -24,7 +24,7 @@ static void NONRET usage(void) { fputs("\ -Usage: image-dup-test [options] image1 image2 \n\ +Usage: ucw-image-dup-test [options] image1 image2 \n\ \n\ -q --quiet no progress messages\n\ -f --format-1 image1 format (jpeg, gif, png)\n\ diff --git a/images/image-sim-test.c b/images/ucw-image-sim-test.c similarity index 99% rename from images/image-sim-test.c rename to images/ucw-image-sim-test.c index 52cf6771..873621fc 100644 --- a/images/image-sim-test.c +++ b/images/ucw-image-sim-test.c @@ -28,7 +28,7 @@ static void NONRET usage(void) { fputs("\ -Usage: image-sim-test [options] image1 [image2] \n\ +Usage: ucw-image-sim-test [options] image1 [image2] \n\ \n\ -q --quiet no progress messages\n\ -f --format-1 image1 format (jpeg, gif, png)\n\ diff --git a/images/image-tool.c b/images/ucw-image-tool.c similarity index 99% rename from images/image-tool.c rename to images/ucw-image-tool.c index 3f24d029..4b7f3df8 100644 --- a/images/image-tool.c +++ b/images/ucw-image-tool.c @@ -22,7 +22,7 @@ static void NONRET usage(void) { fputs("\ -Usage: image-tool [options] infile [outfile]\n\ +Usage: ucw-image-tool [options] infile [outfile]\n\ \n\ -q --quiet no progress messages\n\ -f --input-format input image format (jpeg, gif, png)\n\ -- 2.39.5