]> git.sesse.net Git - movit/blobdiff - Makefile
Start actually piecing together the GLSL shaders from the effect chain.
[movit] / Makefile
index deaf0663ac658efade94db1ddd1ab152debf75d5..2beee8bec36064fef18cc028addba21e01b6834c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,8 @@ CC=gcc
 CXX=g++
 CXXFLAGS=-Wall
 LDFLAGS=-lSDL -lSDL_image -lGL
-OBJS=test.o util.o
+OBJS=main.o util.o widgets.o effect.o effect_chain.o
+OBJS += lift_gamma_gain_effect.o gamma_expansion_effect.o colorspace_conversion_effect.o
 
 test: $(OBJS)
        $(CXX) -o test $(OBJS) $(LDFLAGS)