]> mj.ucw.cz Git - libucw.git/blob - images/Makefile
unfinished revision of image comparisions
[libucw.git] / images / Makefile
1 # Testing dir... code will be moved somewhere else... maybe to trash :-)
2
3 DIRS+=images
4
5 PROGS+=$(addprefix $(o)/images/,image-tool image-dup-test)
6
7 LIBIMAGES_MODS=image scale color alpha io-main dup-cmp
8 LIBIMAGES=$(o)/images/libimages.$(LS)
9 LIBIMAGES_LIBS=
10
11 ifdef CONFIG_IMAGES_LIBJPEG
12 LIBIMAGES_MODS+=io-libjpeg
13 LIBIMAGES_LIBS+=-ljpeg
14 endif
15
16 ifdef CONFIG_IMAGES_LIBPNG
17 LIBIMAGES_MODS+=io-libpng
18 LIBIMAGES_LIBS+=-lpng
19 endif
20
21 ifdef CONFIG_IMAGES_LIBUNGIF
22 LIBIMAGES_MODS+=io-libungif
23 LIBIMAGES_LIBS+=-lungif
24 else
25 ifdef CONFIG_IMAGES_LIBGIF
26 LIBIMAGES_MODS+=io-libungif
27 LIBIMAGES_LIBS+=-lgif
28 endif
29 endif
30
31 ifdef CONFIG_IMAGES_LIBMAGICK
32 LIBIMAGES_MODS+=io-libmagick
33 MAGICK_LIBS:=$(shell GraphicsMagick-config --libs)
34 MAGICK_CPPFLAGS:=$(shell GraphicsMagick-config --cppflags)
35 LIBIMAGES_LIBS+=$(MAGICK_LIBS)
36 $(o)/images/io-libmagick.o: CFLAGS+=$(MAGICK_CPPFLAGS)
37 endif
38
39 $(o)/images/libimages.a: $(addsuffix .o,$(addprefix $(o)/images/,$(LIBIMAGES_MODS)))
40 $(o)/images/libimages.so: $(addsuffix .oo,$(addprefix $(o)/images/,$(LIBIMAGES_MODS)))
41
42 $(o)/images/image-tool: $(o)/images/image-tool.o $(LIBIMAGES) $(LIBUCW)
43 $(o)/images/image-tool: LIBS+=$(LIBIMAGES_LIBS)
44
45 $(o)/images/image-dup-test: $(o)/images/image-dup-test.o $(LIBIMAGES) $(LIBUCW)
46 $(o)/images/image-dup-test: LIBS+=$(LIBIMAGES_LIBS)
47
48 TESTS+=$(o)/images/image-test.test
49 $(o)/images/image-test: $(o)/images/image-test.o $(LIBIMAGES) $(LIBUCW)
50 $(o)/images/image-test: LIBS+=$(LIBIMAGES_LIBS)
51 $(o)/images/image-test.test: $(o)/images/image-test
52
53 TESTS+=$(o)/images/hilbert-test.test
54 $(o)/images/hilbert-test: LIBS+=-lm $(LIBSH)
55 $(o)/images/hilbert-test.test: $(o)/images/hilbert-test
56
57 TESTS+=$(o)/images/color.test
58 $(o)/images/color-t: LIBS+=-lm
59 $(o)/images/color.test: $(o)/images/color-t
60
61 #$(o)/images/image-test: $(o)/images/image-test.o $(LIBIMAGES) $(LIBUCW)
62 #$(o)/images/image-test: LIBS+=$(LIBIMAGES_LIBS)
63
64 #$(o)/images/image-idx: $(o)/images/image-idx.o $(o)/images/image-obj.o $(o)/images/dup-cmp.o $(o)/indexer/iconfig.o $(o)/images/image-sig.o $(o)/images/kd-tree.o $(o)/images/color.o $(o)/images/image-io.o $(LIBSH) $(LIBLANG) $(LIBCHARSET)
65 #$(o)/images/image-idx: LIBS+=-lGraphicsMagick -ljpeg -lpng
66
67 # By :;DF
68 #PROGS+=$(addprefix $(o)/images/,decomp)
69 #
70 #$(o)/images/block_info.o $(o)/images/block_info.oo: CFLAGS+=-I/usr/include/GraphicsMagick
71 #$(o)/images/k_means.o $(o)/images/k_means.oo: CFLAGS+=-I/usr/include/GraphicsMagick
72 #$(o)/images/decomp.o $(o)/images/decomp.oo: CFLAGS+=-I/usr/include/GraphicsMagick
73
74 #$(o)/images/decomp: $(o)/images/decomp.o $(o)/images/block_info.o $(o)/images/k_means.o $(LIBSH) $(LIBLANG) $(LIBCHARSET)
75 #$(o)/images/decomp: LIBS+=-lGraphicsMagick -ljpeg -lm
76