]> mj.ucw.cz Git - libucw.git/blob - images/Makefile
b8b002204d58631eb791cf82ca00839765a67082
[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)
6
7 LIBIMAGES_MODS=image scale color alpha io-main
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 TESTS+=$(o)/images/image-test.test
46 $(o)/images/image-test: $(o)/images/image-test.o $(LIBIMAGES) $(LIBUCW)
47 $(o)/images/image-test: LIBS+=$(LIBIMAGES_LIBS)
48 $(o)/images/image-test.test: $(o)/images/image-test
49
50 TESTS+=$(o)/images/hilbert-test.test
51 $(o)/images/hilbert-test: LIBS+=-lm $(LIBSH)
52 $(o)/images/hilbert-test.test: $(o)/images/hilbert-test
53
54 TESTS+=$(o)/images/color.test
55 $(o)/images/color-t: LIBS+=-lm
56 $(o)/images/color.test: $(o)/images/color-t
57
58 #$(o)/images/image-test: $(o)/images/image-test.o $(LIBIMAGES) $(LIBUCW)
59 #$(o)/images/image-test: LIBS+=$(LIBIMAGES_LIBS)
60
61 #$(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)
62 #$(o)/images/image-idx: LIBS+=-lGraphicsMagick -ljpeg -lpng
63
64 # By :;DF
65 #PROGS+=$(addprefix $(o)/images/,decomp)
66 #
67 #$(o)/images/block_info.o $(o)/images/block_info.oo: CFLAGS+=-I/usr/include/GraphicsMagick
68 #$(o)/images/k_means.o $(o)/images/k_means.oo: CFLAGS+=-I/usr/include/GraphicsMagick
69 #$(o)/images/decomp.o $(o)/images/decomp.oo: CFLAGS+=-I/usr/include/GraphicsMagick
70
71 #$(o)/images/decomp: $(o)/images/decomp.o $(o)/images/block_info.o $(o)/images/k_means.o $(LIBSH) $(LIBLANG) $(LIBCHARSET)
72 #$(o)/images/decomp: LIBS+=-lGraphicsMagick -ljpeg -lm
73