X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=Makefile;h=f7ba81e7c7c12a188b43ba6dc3e57464fd79b033;hp=aed37a41e18c607adbc32009bd24c8ecc969f68d;hb=ff9e68a3f5abb179bd7bf9fb84df48327f148583;hpb=9bb98b7ce605f8648a0236cd18efd65a82b7920a diff --git a/Makefile b/Makefile index aed37a4..f7ba81e 100644 --- a/Makefile +++ b/Makefile @@ -26,11 +26,13 @@ TESTS += unsharp_mask_effect_test TESTS += diffusion_effect_test TESTS += white_balance_effect_test TESTS += lift_gamma_gain_effect_test +TESTS += resample_effect_test +TESTS += dither_effect_test TESTS += flat_input_test TESTS += ycbcr_input_test # Core. -LIB_OBJS=util.o widgets.o effect.o effect_chain.o +LIB_OBJS=util.o widgets.o effect.o effect_chain.o init.o # Inputs. LIB_OBJS += flat_input.o @@ -51,6 +53,8 @@ LIB_OBJS += glow_effect.o LIB_OBJS += unsharp_mask_effect.o LIB_OBJS += mix_effect.o LIB_OBJS += resize_effect.o +LIB_OBJS += resample_effect.o +LIB_OBJS += dither_effect.o LIB_OBJS += deconvolution_sharpen_effect.o LIB_OBJS += sandbox_effect.o @@ -90,6 +94,10 @@ white_balance_effect_test: white_balance_effect_test.o $(TEST_OBJS) libmovit.a $(CXX) -o $@ $^ $(LDFLAGS) lift_gamma_gain_effect_test: lift_gamma_gain_effect_test.o $(TEST_OBJS) libmovit.a $(CXX) -o $@ $^ $(LDFLAGS) +resample_effect_test: resample_effect_test.o $(TEST_OBJS) libmovit.a + $(CXX) -o $@ $^ $(LDFLAGS) +dither_effect_test: dither_effect_test.o $(TEST_OBJS) libmovit.a + $(CXX) -o $@ $^ $(LDFLAGS) flat_input_test: flat_input_test.o $(TEST_OBJS) libmovit.a $(CXX) -o $@ $^ $(LDFLAGS) ycbcr_input_test: ycbcr_input_test.o $(TEST_OBJS) libmovit.a