X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=Makefile;h=1ab3d9cce46d84d754060e2e207fa0a95a068f70;hp=edbe09b91e589c063f17576b5cd61399f7d35e46;hb=9cae3a759486e8dd608b5ff3c119b3a98f86ac6c;hpb=fb92a4e217a92ecf83b7812cc6933f6f3048b752 diff --git a/Makefile b/Makefile index edbe09b..1ab3d9c 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,13 @@ GTEST_DIR = /usr/src/gtest +EIGEN_CXXFLAGS := $(shell pkg-config --cflags eigen3) +ifeq ($(EIGEN_CXXFLAGS),) +$(error Empty EIGEN_CXXFLAGS. You probably need to install Eigen3) +endif + CC=gcc CXX=g++ -CXXFLAGS=-Wall -g -I$(GTEST_DIR)/include $(shell pkg-config --cflags eigen3 ) +CXXFLAGS=-Wall -g -I$(GTEST_DIR)/include $(EIGEN_CXXFLAGS) LDFLAGS=-lSDL -lSDL_image -lGL -lrt -lpthread RANLIB=ranlib @@ -27,11 +32,12 @@ 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 @@ -53,6 +59,7 @@ 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 @@ -94,6 +101,8 @@ lift_gamma_gain_effect_test: lift_gamma_gain_effect_test.o $(TEST_OBJS) libmovit $(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