X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=Makefile;h=aed37a41e18c607adbc32009bd24c8ecc969f68d;hp=026fcb8ad9939949195e0fa489addf9233fd38a8;hb=9bb98b7ce605f8648a0236cd18efd65a82b7920a;hpb=75cfb6ee9d6fda13fae5b59bcdb90c69fdf46435 diff --git a/Makefile b/Makefile index 026fcb8..aed37a4 100644 --- a/Makefile +++ b/Makefile @@ -27,6 +27,7 @@ TESTS += diffusion_effect_test TESTS += white_balance_effect_test TESTS += lift_gamma_gain_effect_test TESTS += flat_input_test +TESTS += ycbcr_input_test # Core. LIB_OBJS=util.o widgets.o effect.o effect_chain.o @@ -91,6 +92,8 @@ lift_gamma_gain_effect_test: lift_gamma_gain_effect_test.o $(TEST_OBJS) libmovit $(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 + $(CXX) -o $@ $^ $(LDFLAGS) OBJS=$(DEMO_OBJS) $(LIB_OBJS) $(TEST_OBJS) $(TESTS:=.o)