]> git.sesse.net Git - movit/blob - Makefile.in
5d0cb8ad3a98e3927f9c8e8b5768ab43f6f2267a
[movit] / Makefile.in
1 GTEST_DIR ?= /usr/src/gtest
2
3 # This will be upgraded for each release, although not necessarily for every git commit.
4 # See http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
5 # for the rules as of how this is changed. This does not really mean that Movit will
6 # strive towards having a rock-stable ABI, but at least the soversion will increase
7 # whenever it breaks, so that you will not have silent failures, and distribution package
8 # management can run its course.
9 movit_ltversion = 1:2:0
10 movit_version = 1.0.2
11
12 prefix = @prefix@
13 exec_prefix = @exec_prefix@
14 includedir = @includedir@
15 libdir = @libdir@
16 datarootdir = @datarootdir@
17 datadir = @datadir@
18 top_builddir = @top_builddir@
19 with_demo_app = @with_demo_app@
20 with_coverage = @with_coverage@
21
22 CC=@CC@
23 CXX=@CXX@
24 CXXFLAGS=-Wall @CXXFLAGS@ -I$(GTEST_DIR)/include @Eigen3_CFLAGS@ @GLEW_CFLAGS@ @FFTW3_CFLAGS@
25 LDFLAGS=@GLEW_LIBS@ @FFTW3_LIBS@ -lpthread
26 TEST_LDLIBS=@SDL_LIBS@
27 DEMO_LDLIBS=@SDL_image_LIBS@ -lrt -lpthread @libpng_LIBS@ @FFTW3_LIBS@
28 SHELL=@SHELL@
29 LIBTOOL=@LIBTOOL@ --tag=CXX
30 RANLIB=ranlib
31 INSTALL=install
32 MKDIR=mkdir
33
34 ifeq ($(with_coverage),yes)
35 CXXFLAGS += -fprofile-arcs -ftest-coverage --coverage
36 LDFLAGS += -fprofile-arcs -ftest-coverage
37 LDLIBS += -lgcov
38 endif
39
40 DEMO_OBJS=demo.o
41
42 # Inputs.
43 TESTED_INPUTS = flat_input
44 TESTED_INPUTS += ycbcr_input
45
46 INPUTS = $(TESTED_INPUTS) $(UNTESTED_INPUTS)
47
48 # Effects.
49 TESTED_EFFECTS = lift_gamma_gain_effect
50 TESTED_EFFECTS += white_balance_effect
51 TESTED_EFFECTS += gamma_expansion_effect
52 TESTED_EFFECTS += gamma_compression_effect
53 TESTED_EFFECTS += colorspace_conversion_effect
54 TESTED_EFFECTS += alpha_multiplication_effect
55 TESTED_EFFECTS += alpha_division_effect
56 TESTED_EFFECTS += saturation_effect
57 TESTED_EFFECTS += blur_effect
58 TESTED_EFFECTS += diffusion_effect
59 TESTED_EFFECTS += glow_effect
60 TESTED_EFFECTS += unsharp_mask_effect
61 TESTED_EFFECTS += mix_effect
62 TESTED_EFFECTS += overlay_effect
63 TESTED_EFFECTS += padding_effect
64 TESTED_EFFECTS += resample_effect
65 TESTED_EFFECTS += dither_effect
66 TESTED_EFFECTS += deconvolution_sharpen_effect
67 TESTED_EFFECTS += fft_pass_effect
68 TESTED_EFFECTS += vignette_effect
69 TESTED_EFFECTS += slice_effect
70 TESTED_EFFECTS += complex_modulate_effect
71 TESTED_EFFECTS += luma_mix_effect
72 TESTED_EFFECTS += fft_convolution_effect
73
74 UNTESTED_EFFECTS = sandbox_effect
75 UNTESTED_EFFECTS += mirror_effect
76 UNTESTED_EFFECTS += resize_effect
77 UNTESTED_EFFECTS += multiply_effect
78 UNTESTED_EFFECTS += fft_input
79
80 EFFECTS = $(TESTED_EFFECTS) $(UNTESTED_EFFECTS)
81
82 # Unit tests.
83 TESTS=effect_chain_test fp16_test $(TESTED_INPUTS:=_test) $(TESTED_EFFECTS:=_test)
84
85 LIB_OBJS=effect_util.o util.o widgets.o effect.o effect_chain.o init.o resource_pool.o fp16.o $(INPUTS:=.o) $(EFFECTS:=.o)
86
87 # Default target:
88 all: libmovit.la $(TESTS)
89
90 ifeq ($(with_demo_app),yes)
91 all: demo
92 endif
93
94 # Google Test and other test library functions.
95 OWN_TEST_OBJS = gtest_sdl_main.o test_util.o
96 TEST_OBJS = gtest-all.o $(OWN_TEST_OBJS)
97
98 gtest-all.o: $(GTEST_DIR)/src/gtest-all.cc
99         $(CXX) -MMD $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c $< -o $@
100 gtest_sdl_main.o: gtest_sdl_main.cpp
101         $(CXX) -MMD $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c $< -o $@
102
103 # Unit tests.
104 $(TESTS): %: %.o $(TEST_OBJS) libmovit.la
105         $(LIBTOOL) --mode=link $(CXX) $(LDFLAGS) -o $@ $^ $(LDLIBS) $(TEST_LDLIBS)
106
107 OWN_OBJS=$(DEMO_OBJS) $(LIB_OBJS) $(OWN_TEST_OBJS) $(TESTS:=.o)
108 OBJS=$(DEMO_OBJS) $(LIB_OBJS) $(TEST_OBJS) $(TESTS:=.o)
109
110 # A small demo program.
111 demo: libmovit.la $(DEMO_OBJS)
112         $(LIBTOOL) --mode=link $(CXX) $(LDFLAGS) -o demo $(DEMO_OBJS) libmovit.la $(LDLIBS) $(DEMO_LDLIBS)
113
114 # The library itself.
115 libmovit.la: $(LIB_OBJS:.o=.lo)
116         $(LIBTOOL) --mode=link $(CXX) $(LDFLAGS) -rpath $(libdir) -version-info $(movit_ltversion) -o $@ $^ $(LDLIBS)
117
118 %.lo: %.cpp
119         $(LIBTOOL) --mode=compile $(CXX) -MMD -MP $(CPPFLAGS) $(CXXFLAGS) -o $@ -c $<
120         [ ! -r $(@:.lo=.d) ] || sed 's/\.o:/\.lo:/' < $(@:.lo=.d) > $(@:.lo=.ld)
121         [ ! -r .libs/$(@:.lo=.d) ] || sed 's/\.o:/\.lo:/' < .libs/$(@:.lo=.d) > .libs/$(@:.lo=.ld)
122 %.o: %.cpp
123         $(CXX) -MMD -MP $(CPPFLAGS) $(CXXFLAGS) -o $@ -c $<
124
125 DEPS=$(OBJS:.o=.d) $(OBJS:.o=.ld)
126 -include $(DEPS)
127
128 clean:
129         $(LIBTOOL) --mode=clean $(RM) demo $(TESTS) libmovit.la $(OBJS) $(OBJS:.o=.lo)
130         $(RM) $(OBJS:.o=.gcno) $(OBJS:.o=.gcda) $(DEPS) step*.dot chain*.frag
131         $(RM) -r movit.info coverage/ .libs/
132
133 distclean: clean
134         $(RM) Makefile movit.pc config.status config.log
135
136 check: $(TESTS)
137         FAILED_TESTS=""; \
138         for TEST in $(TESTS); do \
139                 ./$$TEST || FAILED_TESTS="$$TEST $$FAILED_TESTS"; \
140         done; \
141         if [ "$$FAILED_TESTS" ]; then \
142                 echo Failed tests: $$FAILED_TESTS; \
143                 exit 1; \
144         fi
145
146 ifeq ($(with_coverage),yes)
147 coverage: check
148         lcov -d . -c -o movit.info
149         lcov --remove movit.info '*_test.cpp' 'test_util.*' 'sandbox_effect.*' widgets.cpp -o movit.info
150         genhtml -o coverage movit.info
151 else
152 coverage:
153         @echo You need to compile with --enable-coverage to use this target.
154         @exit 1
155 endif
156
157 HDRS = effect_chain.h effect_util.h effect.h input.h image_format.h init.h util.h defs.h resource_pool.h fp16.h
158 HDRS += $(INPUTS:=.h)
159 HDRS += $(EFFECTS:=.h)
160
161 SHADERS = vs.vert header.frag footer.frag
162 SHADERS += $(INPUTS:=.frag)
163 SHADERS += $(EFFECTS:=.frag)
164 SHADERS += highlight_cutoff_effect.frag
165 SHADERS += overlay_matte_effect.frag
166 SHADERS += texture1d.frag
167
168 # These purposefully do not exist.
169 MISSING_SHADERS = diffusion_effect.frag glow_effect.frag unsharp_mask_effect.frag resize_effect.frag
170 MISSING_SHADERS += fft_convolution_effect.frag fft_input.frag
171 SHADERS := $(filter-out $(MISSING_SHADERS),$(SHADERS))
172
173 install: libmovit.la
174         $(MKDIR) -p $(DESTDIR)$(libdir)/
175         $(LIBTOOL) --mode=install $(INSTALL) -m 0644 libmovit.la $(DESTDIR)$(libdir)/
176         $(MKDIR) -p $(DESTDIR)$(includedir)/movit/
177         $(INSTALL) -m 0644 $(HDRS) $(DESTDIR)$(includedir)/movit/
178         $(MKDIR) -p $(DESTDIR)$(datadir)/movit/
179         $(INSTALL) -m 0644 $(SHADERS) $(DESTDIR)$(datadir)/movit/
180         $(MKDIR) -p $(DESTDIR)$(libdir)/pkgconfig/
181         $(INSTALL) -m 644 movit.pc $(DESTDIR)$(libdir)/pkgconfig/
182
183 DISTDIR=movit-$(movit_version)
184 OTHER_DIST_FILES=add.frag autogen.sh blue.frag configure.ac d65.h effectlist.txt identity.frag invert_effect.frag Makefile.in mipmap_needing_effect.frag movit.pc.in README NEWS test_util.h widgets.h
185
186 dist:
187         $(MKDIR) $(DISTDIR)
188         cp $(OWN_OBJS:.o=.cpp) $(DISTDIR)/
189         cp $(HDRS) $(DISTDIR)/
190         cp $(SHADERS) $(DISTDIR)/
191         cp $(OTHER_DIST_FILES) $(DISTDIR)/
192         ( cd $(DISTDIR) && aclocal && libtoolize --install --copy && autoconf && $(RM) -r autom4te.cache/ )
193         tar zcvvf ../$(DISTDIR).tar.gz $(DISTDIR)
194         $(RM) -r $(DISTDIR)
195
196 .PHONY: coverage clean distclean check all install dist