X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=Makefile.in;h=759cf58f259073a6b24908c925ddb5c925d4c563;hb=1f4a7aefd4a149e93a1dc41f85958e827670c98b;hp=61faf9c8f75c9030dbbf31cc9abbd52cee92225b;hpb=f7ae70853bf94031b4877a8b843c6030e82c1720;p=movit diff --git a/Makefile.in b/Makefile.in index 61faf9c..759cf58 100644 --- a/Makefile.in +++ b/Makefile.in @@ -64,9 +64,9 @@ UNTESTED_EFFECTS += multiply_effect EFFECTS = $(TESTED_EFFECTS) $(UNTESTED_EFFECTS) # Unit tests. -TESTS=effect_chain_test $(TESTED_INPUTS:=_test) $(TESTED_EFFECTS:=_test) +TESTS=effect_chain_test fp16_test $(TESTED_INPUTS:=_test) $(TESTED_EFFECTS:=_test) -LIB_OBJS=effect_util.o util.o widgets.o effect.o effect_chain.o init.o resource_pool.o $(INPUTS:=.o) $(EFFECTS:=.o) +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) # Default target: all: libmovit.la $(TESTS) @@ -126,7 +126,7 @@ check: $(TESTS) # You need to build with COVERAGE=1 to use this target. coverage: check lcov -d . -c -o movit.info - lcov --remove movit.info '*_test.cpp' 'test_util.*' widgets.cpp -o movit.info + lcov --remove movit.info '*_test.cpp' 'test_util.*' 'sandbox_effect.*' widgets.cpp -o movit.info genhtml -o coverage movit.info HDRS = effect_chain.h effect_util.h effect.h input.h image_format.h init.h util.h defs.h resource_pool.h